What I am trying to do is to concat
wav
files which contain short audios.
I am able to concat
them into one file, but I am trying to set each file at a specific time.
Currently, I can concat
the files but I can't place each one at the specific time they need to be. I thought maybe I can just add the right amount of silence between them and solve the problem this way. I am new to ffmpeg
I have a text file with the file names i.e. text.txt
file a.wav
file b.wav
file c.wav
and I use this cmd:
ffmpeg -f concat -i text.txt out.mp3
This works, but is there a way to add a specified number of minutes of silence between them?
I tried to put this in the text file, but it didn't work:
file a.wav
inpoint 5
outpoint 10
file b.wav
inpoint 10
outpoint 20
file c.wav
inpoint 20
outpoint 25