I'm converting my son's Disney VHS tapes to DVD via DV camera passthrough to AVI CAP. The capture is AVI type 1. I have the pansonic codec loaded so I'm extracting the audio to wav using Virtualdub. I also use Virtualdub to identify the frames that I want to keep. I then build an AVS script to trim (i.e., keep) those frames. I'm then using CCE-Basic (2-pass VBR) to encode the video to .mpv. Finally ... my question ... which is preferred ...
(1) load, trim and convert the video to YUY2 then frameserve to CCE-Basic -- or --
(2) just load & trim then frameserve to CCE-Basic ?
+ Reply to Thread
Results 1 to 8 of 8
-
-
I did try both and couldn't really tell any difference in the video quality ... Also, I really couldn't tell a difference in encoding time either ... I guess it's a wash ... probably safer to stick with method 2.
-
These things are interlaced? Then you definitely want to add a ConvertToYUY2(Interlaced=True) before feeding it to CCE. If the source is progressive, then it depends on what the source colorspace is. RGB perhaps? Then also do the ConvertToYUY2() before feeding it to CCE. If progressive YV12, then it doesn't matter where the conversion takes place. If you're not sure of the colorspace, then it might be safer to do the conversion in AviSynth.
-
It's a VHS CAP (Disney Movie) via DV passthrough. I'm no expert here ... aren't commerical VHS tapes progressive?
-
So isn't it 29.97fps? If so, it's interlaced, since you said it was a movie, which would have been 23.976fps originally, and then telecined to reach 29.97fps. Unless you're prepared to IVTC it back to 23.976fps, thus making it progressive again, you add the line I first mentioned and encode it as interlaced with the appropriate settings in CCE.
-
ConvertToYUY2(interlaced=true)
That should be the last line in your script.
Here is a simple guide I wrote: CLICK HERE
That shows you how to use VirtualDubMod to edit and then import those edits into your AviSynth AVS script ... also it shows how to properly use Convolution3D with interlaced video (which is what you have). Convolution3D is a very powerfull and wonderfull "video noise" filter ... it does soften the image a bit (loss of detail) but the amount of "video noise" it removes is well worth it ... plus there are various settings so some remove less noise (with more detail kept) whereas others remove more noise (with less detail kept). There are also special settings for animation.
- John "FulciLives" Coleman"The eyes are the first thing that you have to destroy ... because they have seen too many bad things" - Lucio Fulci
EXPLORE THE FILMS OF LUCIO FULCI - THE MAESTRO OF GORE
-
Originally Posted by manono
After reading FulciLives post ... I guess it is. FulciLives, thanks for the sample script ... I'll take a look at it.
Similar Threads
-
Convert YUY2 to RGB
By jrivord in forum Video Streaming DownloadingReplies: 8Last Post: 19th Aug 2010, 10:21 -
How to Convert AVI to DVD + AC3 with CCE and AC3Machine
By ta2 in forum User guidesReplies: 40Last Post: 21st Jan 2010, 18:01 -
Question re settings in CCE Basic
By eclipse95 in forum Video ConversionReplies: 4Last Post: 6th May 2009, 16:17 -
aviSynth + CCE Basic (2.7) fails on certain scripts
By binister in forum Video ConversionReplies: 6Last Post: 11th May 2008, 00:23 -
AVI->MPEG2 (CCE Basic) encoding results in incorrect video length in pla
By binister in forum Video ConversionReplies: 8Last Post: 26th Feb 2008, 17:29