PDA

View Full Version : QuEnc and YUY2 only


Tau
16th April 2006, 22:38
Hi and thanks for reading my post!

I am compressing an .avi into mpeg2 for a DVD.

I have an uncompressed .avi. I have created .avs for it using Gordian Knot. When I load the .avs into QuEnc, the encoder says "Avisynth open failure: unDot: Supports YUY2 color format only". I have never seen this error.

Could anybody kindly help solving this, please?

Many thanks in advance!

T

Paukenfell
16th April 2006, 22:47
try ConvertToYV12()

dragongodz
17th April 2006, 07:50
actually the error message is pretty clear what the problem is, undot requires yuy2. so actually you would need

converttoyuy2()
undot()
converttoyv12()

foxyshadis
17th April 2006, 09:25
A little too explicit, in fact....

if (!vi.IsYUY2() && !vi.IsYV12())
{
env->ThrowError("UnDot: Supports YUY2 color format only");
}

It supports YV12 just fine, even if it doesn't say so. :p

Tau
17th April 2006, 21:15
It's so cool to have smart people around. Thank you all very much for your replies'n'help!

Best regards!!
T

dragongodz
18th April 2006, 13:03
It supports YV12 just fine, even if it doesn't say so.
ah of course it does. you cant blame QuEnc though for just reporting the error message its given from Avisynth. :)

so yes a converttoyv12() before undot() should be all thats needed.

bacon
4th May 2006, 14:22
sorry to bump, but how would you add ConvertToYV12() to the default avs settings in gknot. I'd rather have it default so I wouldnt need to enter it manually everytime.