我有一个 mp3 文件,无法使用 Windows 8 上的任何音频播放器播放,因此我决定使用 ffmpeg 对其进行转换。我从一个可以播放 mp3 的网站下载了它。我想从第 219 秒开始保留 497 秒。
ffmpeg -ss 219 -t 497 -i INPUT.mp3 -codec:a libmp3lame -qscale:a 9 OUTPUT.mp3
我相信我使用此命令是正确的,但是 ffmpeg 给出了以下输出:
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
我是否需要指定帧大小 / 分析持续时间 / 探测大小值?如果需要,该如何指定?