Recherche avancée

Médias (1)

Mot : - Tags -/stallman

Autres articles (61)

  • Le plugin : Podcasts.

    14 juillet 2010, par

    Le problème du podcasting est à nouveau un problème révélateur de la normalisation des transports de données sur Internet.
    Deux formats intéressants existent : Celui développé par Apple, très axé sur l’utilisation d’iTunes dont la SPEC est ici ; Le format "Media RSS Module" qui est plus "libre" notamment soutenu par Yahoo et le logiciel Miro ;
    Types de fichiers supportés dans les flux
    Le format d’Apple n’autorise que les formats suivants dans ses flux : .mp3 audio/mpeg .m4a audio/x-m4a .mp4 (...)

  • 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 logiciels spécifiques aux médias

    10 décembre 2010, par

    Pour un fonctionnement correct et optimal, plusieurs choses sont à prendre en considération.
    Il est important, après avoir installé apache2, mysql et php5, d’installer d’autres logiciels nécessaires dont les installations sont décrites dans les liens afférants. Un ensemble de librairies multimedias (x264, libtheora, libvpx) utilisées pour l’encodage et le décodage des vidéos et sons afin de supporter le plus grand nombre de fichiers possibles. Cf. : ce tutoriel ; FFMpeg avec le maximum de décodeurs et (...)

Sur d’autres sites (5915)

  • recording live video stream from tv card using ffmpeg at window

    16 août 2013, par user2688423

    I want to capture thumbnail every 1 second from tv card(tv signal) using ffmpeg in window.

    first of all, to record live video from tv card, I tried below.

    ffmpeg -f dshow -i video="SKYTV HD USB Maxx Video Capture" -r 20 -threads 0 D ://test.mkv

    But it didn't work.
    the Error message is

    "[dshow@000000000034d920] Could not run filter
    video=SKYTV HD USB Maxx Video Capture : Input/output error"

    I use the device called 'SKYTV HD USB Maxx Video Capture' for getting tv signal(TV card).

    (people usually suggest "ffmpeg -f oss -i dev/dsp -f video4linux2 -i dev/video0/tmp/out.mpg"
    but I dont think it works at window. this is the error message i got : "Unknown input format: 'video4linux2'")

    what should i do to record live video and get thumbnail every 1 second from tv card(tv signal) using ffmpeg in window ?

    Please help..!

  • Facebook Look Back and Dynamic Rendering [on hold]

    6 février 2014, par goo

    Facebook launched last month the Look Back page.

    Here at our company we've developed a few projects similar to it, but never dynamically rendering a video on the server side just like Facebook seems to do.

    Our solution was always overlaying elements with Flash in a background video like Lost in Val Sinestra.

    how can I create a dynamically rendered video in server side ?
    Is ffmpeg suitable for this ?

    Is there another tool that can do it ?

    Thanks

  • ffmpeg encode video with different rates [on hold]

    12 août 2013, par alexis

    I have two videos. I make this videos with the following codes :

     ffmpeg -r 5 -f image2 -i "b%d.png" -c:v mpeg4 -q:v 5 -an a.avi
     ffmpeg -r 15 -f image2 -i "b%d.png" -c:v mpeg4 -q:v 5 -an b.avi

    As you can see, the only difference is the rate. Now I want to concatenate them. Following the other post I use this :

     ffmpeg -i "concat:a.avi|b.avi" -c copy movie2.avi

    However the resulting movie shows the "b.avi" part much more slower. Actually no difference of speed is appreciated between "a" and "b" parts. How can I keep the differences of speed in the resulting movie ?

    Maybe I have some conceptual misunderstanding about rate... but the thing is that I want the "b.avi" part to be faster than the "a.avi" part.