En ligne de commande avec ffmpeg2theora disponible pour linux, mac et windows. Perso, c'est la méthode que je trouve la plus simple à manipuler (mais bon la ligne de commande ça rebute un peu il paraît)
Ce code convertit une vidéo en flv du dossier courant au format ogg et la redimensionne en 320x240 :
ffmpeg2theora -x 320 -y 240 video.flv
On peut ne pas ajouter les paramètres -x et -y si on ne souhaite pas la redimensionner, la convertion dans d'autres formats est évidement possible...
Pour linux, il y a aussi Ogg convert pour Gnome.
Enfin, un composant pour Quicktime de chez xiph.org permet de produire du ogg (dispo pour mac et windows)
Je ferais mieux de relire mes articles, moi :D
http://tuxicoman.blogspot.com/2007/08/convertir-une-vido-en-ogg-theora.html
Long mais ça fonctionne :)
Un petit tutoriel pour convertir en theora avec VLC ou Wtheora sur Windows
EDIT : Idem sous linux avec VLC, Pitivi ou Kino
Hi all,
To convert a video (e.g. video.mov) to theora (e.g. video.ogv) I use ffmpeg2theora (latest: http://firefogg.org/nightly/)
I use this (command line or batch):
ffmpeg2theora "video.mov" -o "video.ogv" -x 480 -y 200 --two-pass --videobitrate 500 --soft-target --audiobitrate 96
-x (width)
-y (height)
--two-pass (2 pass encoding)
--videobitrate (Kb/s)
--audiobitrate (Kb/s)
Command line is the best solution for me, on both Linux and Windows.
On Linux there's an application (Automen) that can encode to theora (using ffmpeg2theora as encoder) and various other formats (using other encoders). It has a nice gui.
Regards,
Checco
J'ai vraiment du mal à convertir des vidéos Flash en Ogg theora. Ffmpeg2theora plante dessus. Je passe par VLC pour produire un mpeg intermédiaire. Mais la conversion vers l'ogg theora détruit la synchronisation audio. Quelqu'un connait une technique éprouvée?