i am trying to use the code bellow to merge an audio file at specific time (6th second of my input video) and create a new video autput file but i cant make it work.
<?php
exec("/usr/local/bin/ffmpeg -sameq -i /home/xxx/public_html/xxx/video/full.mp4 -itsoffet 6 -i /home/xxx/public_html/xxx/sounds/names/george.mp3 /home/xxx/public_html/xxx/upload/sample.mpg");
?>
Thank you a lot!
Firstly, you have a typo in your command:
-itsoffetshould be-itsoffset.Secondly, it seems there’s a bug affecting
-itsoffset.Take a look at these identical/similar questions: