Usando o ffmpeg para conversão de mp3: não foi possível encontrar os parâmetros do codec / tamanho de quadro não especificado

0

Eu tenho um arquivo mp3 que não consigo reproduzir com nenhum dos meus players de áudio que tenho no Windows 8, então decidi convertê-lo usando o ffmpeg. Eu baixei de um site, que foi capaz de reproduzir o mp3. Eu quero manter 497 segundos a partir do 219 segundo.

ffmpeg -ss 219 -t 497 -i INPUT.mp3 -codec:a libmp3lame -qscale:a 9 OUTPUT.mp3

Acredito que estava correto ao usar este comando, mas o ffmpeg fornece a seguinte saída:

ffmpeg version N-58456-ga9a3afe Copyright (c) 2000-2013 the FFmpeg developers
  built on Nov 25 2013 22:01:38 with gcc 4.8.2 (GCC)
  configuration: --enable-gpl --enable-version3 --disable-w32threads --enable-avisynth --enable-bzlib --enable-fontconfig --enable-frei0r --enable-gnutls --enable-iconv --enable-libass --enable-libbluray --enable-libcaca --enable-libfreetype --enable-libgsm --enable-libilbc --enable-libmodplug --enable-libmp3lame --enable-libopencore-amrnb --enable-libopencore-amrwb --enable-libopenjpeg --enable-libopus --enable-librtmp --enable-libschroedinger --enable-libsoxr --enable-libspeex --enable-libtheora --enable-libtwolame --enable-libvidstab --enable-libvo-aacenc --enable-libvo-amrwbenc --enable-libvorbis --enable-libvpx --enable-libwavpack --enable-libx264 --enable-libxavs --enable-libxvid --enable-zlib
  libavutil      52. 54.100 / 52. 54.100
  libavcodec     55. 44.100 / 55. 44.100
  libavformat    55. 21.102 / 55. 21.102
  libavdevice    55.  5.100 / 55.  5.100
  libavfilter     3. 91.100 /  3. 91.100
  libswscale      2.  5.101 /  2.  5.101
  libswresample   0. 17.104 /  0. 17.104
  libpostproc    52.  3.100 / 52.  3.100
[mp3 @ 003beaa0] Could not find codec parameters for stream 0 (Audio: mp3, 0 channels, s16p): unspecified frame size
Consider increasing the value for the 'analyzeduration' and 'probesize' options
bitcoin_spraakherkenning.mp3: could not find codec parameters

Preciso especificar os valores de framesize / analysisuration / probesize? E se sim, como?

    
por Lewistrick 31.01.2015 / 16:47

0 respostas