Recherche avancée

Médias (1)

Mot : - Tags -/publicité

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 (2062)

  • ffmpeg convert mp4 to mpg which can be played in a dvd player

    17 avril 2014, par Santhosh Yedidi

    I have seen that to convert a file to dvd player format using ffmpeg we use

             ffmpeg -i input.mp4  -target  ntsc-dvd  output.mpg

    the output.mpg will be played from usb in the tv.

    But the bitrate at which ntsc-dvd converts is very high. Because of which the size of the mpg is 5 times bigger than mp4.

    So i tried to convert manually

              ffmpeg -i input.mp4  -c:v mpeg2video  -q:v 5 -c:a ac3 -b:a 60k output.mpg

    the problem is the file gets converted with almost equal size as mp4 but without any sound. The audio codec of output.mpg shows ac3. Why ac3 is not having any sound.

  • why avi file can not be played correctly converted by ffmpeg with acodec speex ?

    5 août 2013, par tony_2007

    I convert a mpg file with ffmpeg using this command :

    ffmpeg.exe -i d :\test.mpg -b:v 1000k -s 320x240 -vcodec libx264 -acodec libspeex -ar 16000 -ab 16800 -ac 1 test22.avi

    The file test22.avi can not be played by vlc or mediaplayer.

    I check the test22.avi with an avi parse application, find that the avi file format is not correct. Is the ffmpeg convert command wrong ?

    Who can help me ?

    Thanks very much !

  • Muting audio when video is not being played in complex filtergraph

    18 février 2020, par Vitalis Hommel

    My goal is to silence audio till when the appropriate video is playing.

    This is what I tried

    ffmpeg -i a.mp4 -itsoffset 00:00:4.061 -i b.mp4 -itsoffset 00:00:8.016 -i c.mp4 -itsoffset 00:00:12.016 -i d.mp4 -filter_complex "[0:a][2:a][3:a]amerge=inputs=3,volume=0[a0];[1:a]adelay=4061[a1];[a0][a1]amerge=inputs=2[audio]..." -map "[audio]" ... -r 60 -vcodec h264 zusammen.mp4

    It starts playing together at the start to be overlayed at 4061. How do I hear the audio in sync with video while what is not being played is muted ?