Log in

View Full Version : MOV(AVC) to MKV(h264) variable framerate


egrimisu
20th March 2014, 11:05
Hi guys,

I believe a lot of you know that apple's iphone record video at variable framerate. I got a few videos that i need te recode to be able to rotate the video since my videoplayer don't support auto image rotating using EXIF information.
I tried to encode with a lot of apps that it seems that audio gets out of sync.

Does anybodyt know how to export the timecodes from a mov file to be able to mux it with mkvmerge? Thanks in advance.

sneaker_ger
20th March 2014, 11:42
AviSynth and ffms2 plugin:
FFVideoSource("input.mov", timecodes="timecodes.txt")
or directly with the included ffmsindex.exe:
ffmsindex -c input.mov

Or remux using mkvmerge and extract the timecodes using mkvextract from the resulting mkv.

egrimisu
20th March 2014, 12:25
AviSynth and ffms2 plugin:
FFVideoSource("input.mov", timecodes="timecodes.txt")
or directly with the included ffmsindex.exe:
ffmsindex -c input.mov

Or remux using mkvmerge and extract the timecodes using mkvextract from the resulting mkv.


Thanks, it worked well both methods.