Log in

View Full Version : Megui insanely fast encode settings


rebkell
22nd February 2008, 04:30
I'm playing around with some decimation schemes, and I'd like some recommendations on getting the fastest encode I can get, it's mostly just for a preview, but I'm running into a lot of strange cadences and I'd like to play around with different decimate settings and I just want to encode it as fast I can to see the results and then when I feel comfortable with the decimation I'll encode it with a better quality.

The files I'm encoding are my HDTV captures(mpeg2), any recommendations of a fast and dirty encode(xvid or x264)? like I said it will only be to check to see if I'm dropping the right frames in my avs script.

Dark Shikari
22nd February 2008, 04:48
Fastest encode possible, or at least close:

x264 --no-dct-decimate --no-cabac --bframes 3 --no-b-adapt --scenecut=-1 --subme 1 --me dia --analyse none --merange 4 --direct none --no-deblock --aq-strength 0.0

Choose QP mode for absolute fastest ratecontrol.

rebkell
22nd February 2008, 06:32
Fastest encode possible, or at least close:

x264 --no-dct-decimate --no-cabac --bframes 3 --no-b-adapt --scenecut=-1 --subme 1 --me dia --analyse none --merange 4 --direct none --no-deblock --aq-strength 0.0

Choose QP mode for absolute fastest ratecontrol.

Thanks.