Recherche avancée

Médias (1)

Mot : - Tags -/biomaping

Autres articles (60)

  • Mise à jour de la version 0.1 vers 0.2

    24 juin 2013, par

    Explications des différents changements notables lors du passage de la version 0.1 de MediaSPIP à la version 0.3. Quelles sont les nouveautés
    Au niveau des dépendances logicielles Utilisation des dernières versions de FFMpeg (>= v1.2.1) ; Installation des dépendances pour Smush ; Installation de MediaInfo et FFprobe pour la récupération des métadonnées ; On n’utilise plus ffmpeg2theora ; On n’installe plus flvtool2 au profit de flvtool++ ; On n’installe plus ffmpeg-php qui n’est plus maintenu au (...)

  • Personnaliser en ajoutant son logo, sa bannière ou son image de fond

    5 septembre 2013, par

    Certains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;

  • (Dés)Activation de fonctionnalités (plugins)

    18 février 2011, par

    Pour gérer l’ajout et la suppression de fonctionnalités supplémentaires (ou plugins), MediaSPIP utilise à partir de la version 0.2 SVP.
    SVP permet l’activation facile de plugins depuis l’espace de configuration de MediaSPIP.
    Pour y accéder, il suffit de se rendre dans l’espace de configuration puis de se rendre sur la page "Gestion des plugins".
    MediaSPIP est fourni par défaut avec l’ensemble des plugins dits "compatibles", ils ont été testés et intégrés afin de fonctionner parfaitement avec chaque (...)

Sur d’autres sites (11487)

  • converting a UYVY FFmpeg

    19 février 2013, par Engine

    I want to read and show a video using opencv. I've recorded with Direct-show, the Video has UYVY (4:2:2) codec, since opencv can't read that format, I want to convert the codec to an RGB color model, I readed about ffmpeg and I want to know if it's possible to get this done with it ? if not if you a suggestion I'll be thankful.

  • Cron job using database results

    9 mars 2013, par Fibericon

    I need help in creating a cron job script. Basically, I want to grab the next scheduled item and run it through ffmpeg to stream. This would be the mysql query (I'm using PHP variables to indicate what should go there - I don't actually know how variables work in cron jobs) :

    SELECT show.file FROM show, schedule
    WHERE channel = 1 AND start_time <= $current_time;

    This would be the ffmpeg command :

    ffmpeg -re -i $file http://127.0.0.1:8090/feed.ffm

    How would I create a cron job to execute these commands ?

  • How to get audio track assignment in ffmpeg

    16 février 2012, par David542

    Is there a way to get the audio track assignment in ffmpeg ? For example, if you are in QuickTime, you can view info (Command - I), and see the track assignment. It looks something like this :

    Apple ProRes 422 (HQ), 1,920 x 1,080
    Linear PCM, 24 bit little-endian signed integer, 48000 Hz, **Left**
    Linear PCM, 24 bit little-endian signed integer, 48000 Hz, **Right**
    Linear PCM, 24 bit little-endian signed integer, 48000 Hz, **Center**
    Linear PCM, 24 bit little-endian signed integer, 48000 Hz, **LFE Screen**
    etc...

    When I do $ ffmpeg -i, it does not show the track assignments —

    Stream #0:12(eng): Audio: pcm_s24le (in24 / 0x34326E69), 48000 Hz, 1 channels, s32, 1152 kb/s
    Metadata:
     creation_time   : 2010-09-16 02:23:49
     handler_name    : ?Apple Alias Data Handler
    Stream #0:13(eng): Audio: pcm_s24le (in24 / 0x34326E69), 48000 Hz, 1 channels, s32, 1152 kb/s
    Metadata:
     creation_time   : 2010-09-16 02:23:49
     handler_name    : ?Apple Alias Data Handler
    Stream #0:14(eng): Audio: pcm_s24le (in24 / 0x34326E69), 48000 Hz, 1 channels, s32, 1152 kb/s
    Metadata:
     creation_time   : 2010-09-16 02:23:49
     handler_name    : ?Apple Alias Data Handler
    Stream #0:15(eng): Audio: pcm_s24le (in24 / 0x34326E69), 48000 Hz, stereo, s32, 2304 kb/s
    Metadata:
     creation_time   : 2010-09-16 02:23:49
     handler_name    : ?Apple Alias Data Handler
    Stream #0:16(eng): Audio: pcm_s24le (in24 / 0x34326E69), 48000 Hz, stereo, s32, 2304 kb/s

    Is there a way to get the track assignments in ffmpeg or another program ?