VirtualDubMod Crash W/HuffYUV

If you have questions about compression/encoding/converting look here.
Locked
User avatar
SrgtWilco
Joined: Mon Oct 16, 2006 6:05 pm
Location: Northeast Illinois
Org Profile

VirtualDubMod Crash W/HuffYUV

Post by SrgtWilco » Tue Apr 03, 2007 11:53 pm

Okay, so when I export from Premiere Elements using HuffYUV to compress, and then load that file into VirtualDubMod, I run into a problem: Whenever I hit a certain frame, the program will freeze and say it has to close. Another scrap with HuffYUV is that some of the frames I did look at had these red bars in about the upper ten pixels of the screen...and lastly, putting in an avisynth script such as this:
#ASYNTHER Default (AVISource)
AVISource("C:\Documents and Settings\Dad\Desktop\Test - HuffYUV Compression.avi")
TFM(pp=0)
TDecimate(mode=1)
will get me an error message reading "Avisynth Open Failure: TFM: YV12 and YUY2 data only"

Help on any (or preferably, all three) of these problems would be greatly appreciated.
Murphy's Constant: If outcome may = A or B, where A=Good and B=FUBAR, anticipate B as most probable result.

User avatar
WC Annihilus
Joined: Wed Jan 17, 2007 10:49 pm
Org Profile

Post by WC Annihilus » Tue Apr 03, 2007 11:59 pm

All right, well I'm not sure about this, but generally you're video editing program uses the RGB32 colorspace. TFM only supports either the YV12 or YUY2 colorspaces. Thus, you'll need to change the colorspace of your vid before using TFM. Add something like ConvertToYV12() to your script before you perform the TFM

User avatar
WC Annihilus
Joined: Wed Jan 17, 2007 10:49 pm
Org Profile

Post by WC Annihilus » Wed Apr 04, 2007 12:00 am

Err, wait, actually I think ConvertToYV12(interlaced=true) since you're dealing with interlaced footage

User avatar
Scintilla
(for EXTREME)
Joined: Mon Mar 31, 2003 8:47 pm
Status: Quo
Location: New Jersey
Contact:
Org Profile

Post by Scintilla » Wed Apr 04, 2007 6:28 am

What's your video's resolution? Preferably, both height and width should be even multiples of 16.

Also, you can force HuffYUV to use YUV mode by setting its RGB compression option to "Convert to YUY2", which will prevent you from having to convert it later in AVISynth.
ImageImage
:pizza: :pizza: Image :pizza: :pizza:

User avatar
BasharOfTheAges
Just zis guy, you know?
Joined: Tue Sep 14, 2004 11:32 pm
Status: Breathing
Location: Merrimack, NH
Org Profile

Post by BasharOfTheAges » Wed Apr 04, 2007 8:46 am

And barring all else, sometimes you can get a bad export. Simply following the advice of the others should take that very random variable out of the equation.

Locked

Return to “Conversion / Encoding Help”