Recherche avancée

Médias (91)

Autres articles (29)

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

  • De l’upload à la vidéo finale [version standalone]

    31 janvier 2010, par

    Le chemin d’un document audio ou vidéo dans SPIPMotion est divisé en trois étapes distinctes.
    Upload et récupération d’informations de la vidéo source
    Dans un premier temps, il est nécessaire de créer un article SPIP et de lui joindre le document vidéo "source".
    Au moment où ce document est joint à l’article, deux actions supplémentaires au comportement normal sont exécutées : La récupération des informations techniques des flux audio et video du fichier ; La génération d’une vignette : extraction d’une (...)

Sur d’autres sites (4762)

  • FFmpeg : How to estimate number of samples in audio stream ?

    14 août 2015, par Marius

    I’m currently writing a small application that’s making use of the FFmpeg library in order to decode audio files (especially avformat and swresample) in C++.

    Now I need the total number of samples in an audio stream. I know that the exact number can only be found out by actually decoding all the frames, I just need an estimation. What is the preferred method here ? How can I find out the duration of a file ?

  • Grabbing images from mp4 using ffmpeg : How to get image after X seconds

    10 septembre 2015, par Anthony

    I am trying to grab images from an mp4. The video is 241 seconds long and looking at data from VLC player I can see that the Frame rate is 4.

    I would like to grab an image from the video every 5 seconds. Since 241/5 = 48.2 In total I would like to have around 49 images in the end.

    How can I do this ?

    I tried the following simply by trial and error :

    ffmpeg -i ~/inputvideo.mp4 -r 0.4 -t 240 image-%d.png

    This gives me a total of 50 images from the video.

  • Crossfade between images in video using ffmpeg in android

    11 septembre 2015, par vishnus

    I have managed to create a video from a series of images using this ffmpeg library ffmpeg-android-java

    My command to generate the video is

    "-y -r 1/3 -i /path/img%d.jpg  +
     "-strict experimental -vcodec libx264 -pix_fmt yuv420p -preset ultrafast -t 21 -crf 30 /path/out.mp4"

    In my case each image is shown for 3 seconds in the video and video is made of total 7 images.

    I want to achieve a crossfade effect when the images change in the video.

    If anyone has done this before then please point me in the right direction.