I've seen the posts regarding transcoding .mov using avisynth. I'm using an avs script with a mezz .mov file that I drop into Rhozet. I am not having an issue doing short clips. The issue is encoding the entire feature length. There must be an additional line of script or a bug within Rhozet that is not allowing me to encoding the entire movie. Any one have any ideas?

video = QTInput("\\b\ifs\data\captures_test.mov", audio=true)

flr = GetChannel(video, 1, 2)
fcc = GetChannel(video, 3, 3)
lrc = Mixaudio(flr, fcc, 0.3254, 0.2301)
bl = GetChannel(video, 5)
br = GetChannel(video, 6)
sl = Mixaudio(bl, br, 0.2818, 0.1627)
sr = Mixaudio(bl, br, -0.1627, -0.2818)
blr = Mergechannels(sl, sr)
audio = Mixaudio(lrc, blr, 1.0, 1.0)
audiodub(video, audio)

converttoyuy2()
autocrop(0)
#crop(0,140,-0,-140)
lanczosresize (640,272)