Convertir une vidéo en theora

4 replies [Last post]
JosephK
User offline. Last seen 1 week 4 days ago. Offline
Joined: 19/02/2010

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)

eon
User offline. Last seen 4 years 11 weeks ago. Offline
Joined: 28/11/2007
Convertir une vidéo en theora

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?

eon
User offline. Last seen 4 years 11 weeks ago. Offline
Joined: 28/11/2007
Convertir une vidéo en theora

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 :)

JosephK
User offline. Last seen 1 week 4 days ago. Offline
Joined: 19/02/2010
Convertir une vidéo en theora

Un petit tutoriel pour convertir en theora avec VLC ou Wtheora sur Windows

EDIT : Idem sous linux avec VLC, Pitivi ou Kino

checco.lnx
User offline. Last seen 1 year 37 weeks ago. Offline
Joined: 30/05/2010
ffmpe2theora

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