Mix Audio tracks with offset in SOX

前端 未结 3 560
無奈伤痛
無奈伤痛 2021-02-10 02:04

From ASP.Net, I am using FFMPEG to convert flv files on a Flash Media Server to wavs that I need to mix into a single MP3 file. I originally attempted this entirely with FFMPEG

3条回答
  •  清歌不尽
    2021-02-10 02:30

    For what it's worth, this should be possible with a combination of -itsoffset and the amix filter, but a bug with -itsoffset prevents it. If it worked, the command would look something like this:

    ffmpeg -i student.flv -itsoffset 3.3 -i teacher.flv -vn -filter_complex amix out.mp3
    

提交回复
热议问题