Recherche avancée

Médias (91)

Autres articles (40)

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-je poster des contenus à partir d’une tablette Ipad ?
    Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir

  • Librairies et binaires spécifiques au traitement vidéo et sonore

    31 janvier 2010, par

    Les logiciels et librairies suivantes sont utilisées par SPIPmotion d’une manière ou d’une autre.
    Binaires obligatoires FFMpeg : encodeur principal, permet de transcoder presque tous les types de fichiers vidéo et sonores dans les formats lisibles sur Internet. CF ce tutoriel pour son installation ; Oggz-tools : outils d’inspection de fichiers ogg ; Mediainfo : récupération d’informations depuis la plupart des formats vidéos et sonores ;
    Binaires complémentaires et facultatifs flvtool2 : (...)

  • Support audio et vidéo HTML5

    10 avril 2011

    MediaSPIP utilise les balises HTML5 video et audio pour la lecture de documents multimedia en profitant des dernières innovations du W3C supportées par les navigateurs modernes.
    Pour les navigateurs plus anciens, le lecteur flash Flowplayer est utilisé.
    Le lecteur HTML5 utilisé a été spécifiquement créé pour MediaSPIP : il est complètement modifiable graphiquement pour correspondre à un thème choisi.
    Ces technologies permettent de distribuer vidéo et son à la fois sur des ordinateurs conventionnels (...)

Sur d’autres sites (4652)

  • 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 ?

  • 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 ?

  • 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.