Autraya wrote:Ok you can kill audio, reduce the resolution(i wouldn't it's small enough) and save as a yv12(?- pretty sure that's righ don't have the pc with me at work) space lagarith (it's an option in the lagarith encode settings for amvapp 3.0 users).
Actually, if the script is already in YV12, then you just have to use the RGB (Default) selection. The other options
force video into that colorspace, but RGB (Default) leaves the colorspace alone. So if the script is already YV12, then the Default will keep it in YV12.
You can also edit with avs or vfapi to save craploads of space, but if you're like me then lossless works best, so you can make lagariths of each episode and cut out the intro/outro and "next episode previews" OR only make clips of the scenes you thing you might use .
Personally, I make low-res MJPEGs first (with ffdshow's MJPEG encoder) and use those to find the clips I need. I write the frame numbers down in a text file, and then go and retrieve them from the full-quality DVD scripts. Generally speaking frame shifts rarely occur, but when they do they aren't wildly off from the numbers I'd jotted down.
For instance, the scripts I used for the first season of Mahoromatic:
Full-quality (which some options would change because the first season is not very uniform):
Code: Select all
MPEG2Source("ep1_1.d2v", ipp=true, cpu=4)
deint = TDeint(mode=2, mtnmode=3, blim=100)
TFM(order=-1,mode=5,PP=7,field=-1,slow=2, clip2=deint)
TDecimate(mode=1)
AssumeFPS(24)
Crop(22,2,-20,0)
deen("w3d",2,8,8,8,8)
gradfun2db(2.0)
Lanczos4Resize(848,512)
Crop(0,16,0,-16)
ColorYUV(gain_u=8)
ConvertToRGB24()
Low-quality for MJPEGs:
Code: Select all
MPEG2Source("ep1_1.d2v", ipp=true, cpu=4)
TFM(order=-1,mode=5,field=-1)
TDecimate(mode=1)
AssumeFPS(24)
BilinearResize(432,240)
Basically, for the MJPEG scripts I only keep what's absolutely necessary for the IVTC operation and to resize to a manageable res (note that I use Lanczos for the DVD and Bilinear for the MJPEGs - this is because Bilinear is less intensive AND makes the video softer and easier to compress). I take everything else out. Sometimes this results in being able to encode an episode
very quickly, depending on what the comp's specs are. And since in MJPEG every frame is a keyframe, the Shift + arrows thing in VDub won't work - if you need to quickly scan through them you need to use Ctrl + arrows, as those go 50 frames at a time. I keep the MJPEGs around so I can always refer to them if I come up short on clips - the VOBs get deleted after I get the clips from them, although I keep their scripts around. If I need to pull another clip out I just re-rip the VOB the same way I did the first time and load it back up.