How to add audio at specific time on video using ffmpeg? -


i want add audio on new created video. in this, have want add on specific time duration using ffmpeg.

ffmpeg -y video.mp4 -itsoffset 00:00:30 -i music.ogg -map 0:0 -map 1:0 -c:v copy -shortest out.mp4 

the -itsoffset option here means 30 seconds start.


Comments

Popular posts from this blog

magento2 - Magento 2 admin grid add filter to collection -

Android volley - avoid multiple requests of the same kind to the server? -

Combining PHP Registration and Login into one class with multiple functions in one PHP file -