rdecker
6th May 2006, 23:30
I am trying to use QuEnc to create some MPEG1 files. Some of the source files are analog captures using Huffyuv @ 640x480 (colorspace: YUY2), while others are VOBs from DVDs. In either case, it appears that if the overall bitrate (video + audio) in the output file exceeds 1500 KBps then the output video gets "jerky" (the audio is ok). I know that MPEG1 files have a limited bitrate but I have some MPEG1 files that someone produced in Premiere that have an overall bitrate of ~2000 KBps. I wanted to make sure that my AviSynth script and my settings for QuEnc aren't causing the premature cut-off in overall bitrate. Does anyone have recommendations about a change in settings that might allow me to increase the maximum overall bitrate?
AviSynth Script:
SetMemoryMax(512)
video =AVISource("D:\Videos\testing.avi",audio=false)
video = ConvertToYV12(video)
video = ReduceBy2(video)
audio = WavSource("D:\Videos\testing.wav")
audio = Normalize(audio,0.98)
AudioDub(video,audio)
QuEnc Advance Options Settings:
Extreme & Slow Settings - unchecked
GOP Size - 12
Max B-Frames - 2
Interlaced Encoding - unchecked
Top Field First - unchecked
Pulldown - unchecked
Force Closed GOP - unchecked
Scene Detection - unchecked
Auto Max Bitrate - unchecked
4:3 Aspect Ratio - checked
Use QLB Matrix - checked
MPEG-2 Mux Profile - MPEG-1 System
Audio Codec - MP2
Audio Bitrate - 192
AviSynth Script:
SetMemoryMax(512)
video =AVISource("D:\Videos\testing.avi",audio=false)
video = ConvertToYV12(video)
video = ReduceBy2(video)
audio = WavSource("D:\Videos\testing.wav")
audio = Normalize(audio,0.98)
AudioDub(video,audio)
QuEnc Advance Options Settings:
Extreme & Slow Settings - unchecked
GOP Size - 12
Max B-Frames - 2
Interlaced Encoding - unchecked
Top Field First - unchecked
Pulldown - unchecked
Force Closed GOP - unchecked
Scene Detection - unchecked
Auto Max Bitrate - unchecked
4:3 Aspect Ratio - checked
Use QLB Matrix - checked
MPEG-2 Mux Profile - MPEG-1 System
Audio Codec - MP2
Audio Bitrate - 192