Unknown encoder 'libtheora'

Fermé
sephare Messages postés 19 Date d'inscription jeudi 24 avril 2014 Statut Membre Dernière intervention 21 mai 2018 - 26 oct. 2014 à 18:40
sephare Messages postés 19 Date d'inscription jeudi 24 avril 2014 Statut Membre Dernière intervention 21 mai 2018 - 28 oct. 2014 à 11:35
Bonjour,

Alors voila j'essaye de changer le format d'une vidéo mp4 en ogg avec ffmpeg. Pour infos je suis sous ubuntu 14.04.

volai ma commade : "ffmpeg -i 20141025_084809.mp4 -vcodec libtheora -acodec -libvorbis v1.ogv"


et mon résultat :
"ffmpeg version 2.4.2 Copyright (c) 2000-2014 the FFmpeg developers
built on Oct 10 2014 15:15:58 with gcc 4.8 (Ubuntu 4.8.2-19ubuntu1)
configuration: --extra-libs=-ldl --prefix=/opt/ffmpeg --enable-avresample --disable-debug --enable-nonfree --enable-gpl --enable-version3 --enable-x11grab --enable-libpulse --enable-libopencore-amrnb --enable-libopencore-amrwb --disable-decoder=amrnb --disable-decoder=amrwb --enable-libx264 --enable-libx265 --enable-libfdk-aac --enable-libvorbis --enable-libmp3lame --enable-libopus --enable-libvpx --enable-libspeex --enable-libass --enable-avisynth --enable-libsoxr --enable-libxvid
libavutil 54. 7.100 / 54. 7.100
libavcodec 56. 1.100 / 56. 1.100
libavformat 56. 4.101 / 56. 4.101
libavdevice 56. 0.100 / 56. 0.100
libavfilter 5. 1.100 / 5. 1.100
libavresample 2. 1. 0 / 2. 1. 0
libswscale 3. 0.100 / 3. 0.100
libswresample 1. 1.100 / 1. 1.100
libpostproc 53. 0.100 / 53. 0.100
Input #0, mov,mp4,m4a,3gp,3g2,mj2, from '20141025_084809.mp4':
Metadata:
major_brand : isom
minor_version : 0
compatible_brands: isom3gp4
creation_time : 2014-10-25 06:48:33
Duration: 00:00:11.31, start: 0.000000, bitrate: 16803 kb/s
Stream #0:0(eng): Video: h264 (High) (avc1 / 0x31637661), yuv420p, 1920x1080, 16707 kb/s, 29.15 fps, 29.50 tbr, 90k tbn, 180k tbc (default)
Metadata:
creation_time : 2014-10-25 06:48:33
handler_name : VideoHandle
Stream #0:1(eng): Audio: aac (mp4a / 0x6134706D), 48000 Hz, stereo, fltp, 122 kb/s (default)
Metadata:
creation_time : 2014-10-25 06:48:33
handler_name : SoundHandle
Unknown encoder 'libtheora"

pourquoi : "Unknown encoder 'libtheora"?

Je suis un gros débile je comprend généralement pas du premier coups. Bref si vous pouvez me décrire au maximum avec du code je vous en serais reconnaissant.
A voir également:

1 réponse

mamiemando Messages postés 33079 Date d'inscription jeudi 12 mai 2005 Statut Modérateur Dernière intervention 23 avril 2024 7 749
28 oct. 2014 à 11:16
ffmpeg utilise deux librairies externes, libtheora et libvorbis :
https://trac.ffmpeg.org/wiki/TheoraVorbisEncodingGuide


Je supppose que dans ton cas il suffit d'installer cette librairie pour régler le problème. Cherchons le paquet correspondant :

(mando@velvet) (~) $ apt-cache search libtheora
libtheora-bin - Theora Video Compression Codec (example encoder, decoder)
libtheora-dbg - Theora Video Compression Codec (debug)
libtheora-dev - Theora Video Compression Codec (development files)
libtheora-doc - Theora Video Compression Codec (documentation)
libtheora0 - Theora Video Compression Codec
libtheora-ocaml - OCaml interface to the theora library
libtheora-ocaml-dev - OCaml interface to the theora library


Donc pour l'installer :

sudo apt-get install libtheora0


Bonne chance
0
sephare Messages postés 19 Date d'inscription jeudi 24 avril 2014 Statut Membre Dernière intervention 21 mai 2018
28 oct. 2014 à 11:35
merci je vais essayer ca!
0