我正在尝试使用以下命令:
ffmpeg -i Fairytale.mp3 -acodec nellymoser -ar 16000 -ac 1 output.flv
并得到一个错误
Input #0, mp3, from 'Fairytale.mp3':
Duration: 00:03:03.64, start: 0.000000, bitrate: 96 kb/s
Stream #0.0: Audio: mp3, 44100 Hz, 2 channels, s16, 96 kb/s
[nellymoser @ 0x7fa8c0]flv does not support that sample rate, choose from (44100, 22050, 11025).
Output #0, flv, to 'output.flv':
Stream #0.0: Audio: nellymoser, 16000 Hz, 1 channels, s16, 64 kb/s
Stream mapping:
Stream #0.0 -> #0.0
Could not write header for output file #0 (incorrect codec parameters ?)
我肯定知道,FLV+Nellymoser 确实支持 16 KHz,但它应该设置为单独的格式,在速率字段中使用零(任意 Nellymoser 是格式号 6,而 16kHz 是 4)。
是否可以将声音重采样参数与 ffmpeg 中的标题填充分开设置?