I have a video file and I need to add multiple audio effects to it at particular time.
How can this be achieved ?
Using FFMPEG only audio can be merged with video file but how to add a small audio effect at particular time.
I tried the following way,
ffmpeg.exe -i video.mp4 -i audio.mp3 -map 0:v -map 1:a -c copy -y output.mp4
Is there any other open source or paid library to do this task?
Any kind of guidance will be appreciated.
Thanks.