Archive: ffmpeg

Un peu de transcodage vidéo 2 : le retour

12/04/2011 by nono

J'en causais ici, 2-3 corrections et ajouts : Les codecs audio de ffmpeg étant ce qu'ils sont, si on a déjà du son qui va bien à la base, il vaut mieux le garder : ffmpeg -i beat_it.mp4 -acodec copy -vcodec libx264 \ -aspect 16:9 -vpre normal -metadata artist="Les Fourmis Acidulees" \ -metadata title="Beat It" beat_it-web.mp4 La syntaxe de ffmpeg2theora est...

Posted in geekeries

Un peu de transcodage vidéo

06/03/2011 by nono

Juste histoire de ne pas oublier, ce blog est un bloc-notes comme un autre. :-) Pour convertir une vidéo en h264 : ffmpeg -i beat_it.dv -acodec libmp3lame -vcodec libx264 \ -aspect 16:9 -vpre normal -metadata artist="Les Fourmis Acidulees" \ -metadata title="Beat It" beat_it.mp4 Pour la convertir en Ogg Theora : ffmpeg2theora -i beat_it.dv --optimize --aspect 16:9 \ --nometadata --no-oshash --artist "Les Fourmis...

Posted in geekeries