#1 Le 28/12/2014, à 14:07
- Eric_89fr
WinFF, avconv, encodage audio lors de conversion vidéo
Bonjour,
J'utilise depuis longtemps Winff que j'ai paramétré vers avconv.
Depuis la mise à niveau vers Utopic, je n'arrive plus à convertir des vidéos vers du mp4.
En lisant attentivement le message d'erreur de la console appelée par winff, il s'agit d'un problème avec libvo_aacenc qui serait l'encodeur audio vers le format aac. J'ai regardé dans Synaptic et ce que j'ai d'installé, c'est un libavo_aacenc0. Sans le 0, ça n'a plus l'air d'exister.
Quelqu'un a-t-il la solution que je n'ai pas trouvé sur le forum ?
Merci
Hors ligne
#2 Le 28/12/2014, à 14:13
- Eric_89fr
Re : WinFF, avconv, encodage audio lors de conversion vidéo
Précision :
J'ai essayé de modifié la ligen de commande dans l'onglet FFMpeg de Winff en rajoutant un 0, mais j'ai le même message d'erreur
avconv version 11-6:11-1, Copyright (c) 2000-2014 the Libav developers
built on Sep 26 2014 14:36:31 with gcc 4.9.1 (Ubuntu 4.9.1-15ubuntu1)
[mpegts @ 0xca8880] max_analyze_duration 5000000 reached
Input #0, mpegts, from '/home/ubuntu/Vidéos/2014/08/00136.MTS':
Duration: 00:04:05.24, start: 0.521233, bitrate: 7013 kb/s
Program 1
Stream #0.0[0x1011]: Video: h264 (High), yuv420p, 1440x1080 [PAR 4:3 DAR 16:9], 50 fps, 90k tbn, 50 tbc
Stream #0.1[0x1100]: Audio: ac3, 48000 Hz, stereo, fltp, 256 kb/s
Unknown encoder 'libvo_aacenc0'
Appuyez sur Entrée pour continuer
Hors ligne
#3 Le 28/12/2014, à 15:05
- Gaara
Re : WinFF, avconv, encodage audio lors de conversion vidéo
Salut,
Essaye d'installer les codecs supplémentaires pour avconv:
sudo apt-get install libavcodec-extra-56
Kubuntu 18.04 x64
Un terminal tactile Raspberry Pi et Odroid
<code>zenity --question --title "Alert" --text "Microsoft Windows has been found! Would you like to remove it?"</code>
Hors ligne
#4 Le 30/12/2014, à 15:27
- Eric_89fr
Re : WinFF, avconv, encodage audio lors de conversion vidéo
L'erreur a changé, mais il reste une erreur
avconv version 11-6:11-1, Copyright (c) 2000-2014 the Libav developers
built on Sep 26 2014 14:36:31 with gcc 4.9.1 (Ubuntu 4.9.1-15ubuntu1)
[mpegts @ 0x20b37e0] max_analyze_duration 5000000 reached
Input #0, mpegts, from '/home/ubuntu/Vidéos/2014/08/00137.MTS':
Duration: 00:01:09.56, start: 0.523211, bitrate: 6345 kb/s
Program 1
Stream #0.0[0x1011]: Video: h264 (High), yuv420p, 1440x1080 [PAR 4:3 DAR 16:9], 50 fps, 90k tbn, 50 tbc
Stream #0.1[0x1100]: Audio: ac3, 48000 Hz, stereo, fltp, 256 kb/s
[libx264 @ 0x20ba4a0] [Eval @ 0x7fff20110b60] Undefined constant or missing '(' in 'chroma'
[libx264 @ 0x20ba4a0] Unable to parse option value "+chroma"
[libx264 @ 0x20ba4a0] Error setting option cmp to value +chroma.
Output #0, mp4, to '/home/ubuntu/00137.mp4':
Stream #0.0: Video: libx264, q=2-31, 200 kb/s, PAR 4:3 DAR 0:0, 50 fps
Metadata:
encoder : Lavc56.1.0 libx264
Stream #0.1: Audio: libvo_aacenc, 0 channels, 200 kb/s
Metadata:
encoder : Lavc56.1.0 libvo_aacenc
Stream mapping:
Stream #0:0 -> #0:0 (h264 (native) -> h264 (libx264))
Stream #0:1 -> #0:1 (ac3 (native) -> aac (libvo_aacenc))
Error while opening encoder for output stream #0:0 - maybe incorrect parameters such as bit_rate, rate, width or height
Dans l'onglet FFMpeg de WinFF, la ligne de commande est la suivante :
/usr/bin/avconv -y -i "/home/ubuntu/Vidéos/2014/08/00137.MTS" -crf 35.0 -vcodec libx264 -preset slow -acodec libvo_aacenc -ar 48000 -ab 128k -coder 1 -flags +loop -cmp +chroma -partitions +parti4x4+partp8x8+partb8x8 -me_method hex -subq 6 -me_range 16 -g 250 -keyint_min 25 -sc_threshold 40 -i_qfactor 0.71 -b_strategy 1 -threads 0 "/home/ubuntu/00137.mp4"
Hors ligne