使用ffmpeg和偏移混合声音,其偏移不起作用

时间:2015-08-09 16:11:11

标签: android ffmpeg

我想在android上使用ffmpeg混合三个声音。但我希望最后两个声音与某些偏移的第一个声音混合。我正在使用这个命令:

ffmpeg -i input1 -itsoffset 5 -i input2 -itsoffset 10 -i input3 -filter_complex amix=inputs=3:duration=first:dropout_transition=3 -strict -2 output

我将input2偏移值设为5秒,输入3偏移值为10秒。但它只是混合了input1开头的声音。简而言之,它的偏移不起作用。有什么想法吗?

1 个答案:

答案 0 :(得分:2)

根据this bug report-itsoffset参数仅影响视频流(时间戳),但不影响任何音频流(时间戳)。