Log in

View Full Version : X264 command line question


jdobbs
15th January 2012, 18:52
I'm hoping one of you X264 command line experts might be able to answer this.

When I create an X264 command line that uses both the "--seek" parameter and the "--qpfile" parameter, is the frame offset used in the qpfile relative to the first encoded frame (the one specified in --seek) or is it relative to the first frame of the input file?

kemuri-_9
15th January 2012, 19:27
--seek skips frames from both the input to libx264 and the qpfile together.

e.g. --seek 100 will start encoding the post filtered input from frame 100 and will also start reading the qpfile from frame 100.

jdobbs
15th January 2012, 20:08
--seek skips frames from both the input to libx264 and the qpfile together.

e.g. --seek 100 will start encoding the post filtered input from frame 100 and will also start reading the qpfile from frame 100.Thanks.