changing size in avisynth, vdub error messages
- norskotaku
- Joined: Fri Jun 13, 2003 11:42 am
- Location: houston, tx
- Contact:
changing size in avisynth, vdub error messages
I'm trying to resize my videos to 640x480 for online distribution, and have written an avisynth script to load into vdub, rather than using vdub to resize, in order to avoid another colourspace conversion. I followed the templates in the A & E guide, but every time I try to encode the video, it gets almost to the end and has an error, saying there might be corrupt data.
I tried using SetMemoryMax as well to see if that fixed the problem, but I got the same thing. am I missing something? I thought I could use the avisynth file to do the resizing and encode it using vdub. am I doing something wrong? or is there something wrong with my source file?
I tried using SetMemoryMax as well to see if that fixed the problem, but I got the same thing. am I missing something? I thought I could use the avisynth file to do the resizing and encode it using vdub. am I doing something wrong? or is there something wrong with my source file?
- Corran
- Joined: Mon Oct 14, 2002 7:40 pm
- Contact:
- klinky
- Joined: Mon Jul 23, 2001 12:23 am
- Location: Cookie College...
- Contact:
There's really no point to converting your video using AVIsynth, it's not going to save you a colorspace conversion. Video coming out of Premiere(or most any digital video editor) is going to be in RGB. Vdub's internal filter engine works in RGB. RGB -> RGB = no loss.
Basically it should be going like:
(AVISynth w/IVTC and/or 2D filtering ) = YUV ----> (Premiere) = RGB -----> VirtualDub(RGB) ----> MPEG/4 codec(YUV).
Basically it should be going like:
(AVISynth w/IVTC and/or 2D filtering ) = YUV ----> (Premiere) = RGB -----> VirtualDub(RGB) ----> MPEG/4 codec(YUV).
- norskotaku
- Joined: Fri Jun 13, 2003 11:42 am
- Location: houston, tx
- Contact:
I'm resizing the video I already did in premiere. it's currently encoded with huffyuv, and thus, using vdub to resize it would convert it to rgb again.
I'm trying to take the 720x480 video and change it to 640x480 to correct the aspect ratio for my xvid copies. I'll leave it the way it is for the mpegs, since I believe I will be able to correct that with the file itself anyway.
here is the current avs file:
SetMemoryMax(10)
AVISource("E:/princess_nine/Going down in flames - huffy.avi")
BicubicResize(640,480)
(the top lin was added after the first time I had the problem.)
I just remembered that I was doing the same with my newest video and didn't run into that error. that avs file was setup the same, but without the SetMemoryMax line. that makes me wonder if there is something wrong with my huffy copy of this video? it worked fine encoding without using an avs file, but that was without resizing as well.
I'm trying to take the 720x480 video and change it to 640x480 to correct the aspect ratio for my xvid copies. I'll leave it the way it is for the mpegs, since I believe I will be able to correct that with the file itself anyway.
here is the current avs file:
SetMemoryMax(10)
AVISource("E:/princess_nine/Going down in flames - huffy.avi")
BicubicResize(640,480)
(the top lin was added after the first time I had the problem.)
I just remembered that I was doing the same with my newest video and didn't run into that error. that avs file was setup the same, but without the SetMemoryMax line. that makes me wonder if there is something wrong with my huffy copy of this video? it worked fine encoding without using an avs file, but that was without resizing as well.
- norskotaku
- Joined: Fri Jun 13, 2003 11:42 am
- Location: houston, tx
- Contact:
- norskotaku
- Joined: Fri Jun 13, 2003 11:42 am
- Location: houston, tx
- Contact:
- klinky
- Joined: Mon Jul 23, 2001 12:23 am
- Location: Cookie College...
- Contact:
- norskotaku
- Joined: Fri Jun 13, 2003 11:42 am
- Location: houston, tx
- Contact:
- klinky
- Joined: Mon Jul 23, 2001 12:23 am
- Location: Cookie College...
- Contact:
