I want to fix audio sync problems. I looked in MPC-HC that audio should be delayed by 2750 milleseconds.
The following two commands
ffmpeg -itsoffset +2.750 -i MyFile.avi -vcodec copy -ss 00:28:32 -to 00:29:30 MyFile2.avi
ffmpeg -itsoffset -2.750 -i MyFile.avi -vcodec copy -ss 00:28:32 -to 00:29:30 MyFile2.avi
give exactly the same result (video and audio non synchronized and shifted equally).
I.e. -itsoffset
option does not work.
Why?