I want to input the audio files present in a local file and merge them with defnite overlap time in a dynamic way and that means overlap time i will be providing will change from one instance to another.I want to use ffmpeg command using python script I have been using this ffmpeg command to merge two audios
ffmpeg -i sound.mp3 -i sound2.mp3 -filter_complex "[1]adelay=10000|10000[b]; [0][b]amix=2" audiomerged.mp3
|<---- 1st mp3 file --------------------> | | <-----------2nd mp3 file ------------->|
result: |<-----------------------(overlap 10 sec )--------------------->|
Can anyone help me with this