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

Lists in Python -

android - can not access to progress bar in an other activity -

java - Vaadin 7 Pass Data Between Views -