If you have a single recording containing multiple episodes or commercials:
Create a script to process all .mkv files in a folder: i'm a celebrity, get me out of here! season 13 ffmpeg
Season 13 of the UK version was notorious for its "Unseen Bits" episode. Using FFmpeg, you can merge the main episodes with bonus content: If you have a single recording containing multiple
ffmpeg -i out_of_sync.mkv -itsoffset 0.5 -i out_of_sync.mkv -map 1:v -map 0:a -c copy synced_fixed.mkv (Adjust 0.5 seconds as needed—positive or negative.) i'm a celebrity, get me out of here! season 13 ffmpeg
For more FFmpeg help, run ffmpeg -h or consult the official documentation. And remember: the only thing more challenging than a Bushtucker Trial is debugging an incorrect -itsoffset value.
Introduction