Convert to Edit-Friendly MP4 CRF value

Could we get some additional details on the default codec option in the ‘Convert to Edit-Friendly’ dialog? Specifically the CRF value (assuming ‘Quality-based VBR’ in x264)? The ‘Lossy: I-frame only H.264/AC-3 MP4’ info is helpful but insufficient to determine if this will serve as an appropriate intermediate codec. We can examine the output to ascertain most input parameters, but things like Rate Control are not discernable. Ultimately, we would need the following additional information (or manual control akin to the Export > Advanced tabs):
Codec > CRF:
Video > Interpolation
Audio > Rate Control
Audio > bitrate or quality AQ

We’re also seeing major blurring (double vision) issues with the Blend method for Overriding the frame rate. But that’s another topic.

This is not documented formally anywhere. If you can muddle through the code, you can infer the options here:

    args << "-f" << "mp4" << "-codec:a" << "ac3" << "-b:a" << "512k" << "-codec:v" << "libx264";
    args << "-preset" << "medium" << "-g" << "1" << "-crf" << "15";

Basically, it uses the “medium” preset for libx264 with crf=15

1 Like

This topic was automatically closed after 90 days. New replies are no longer allowed.