rkr1958
14th August 2006, 03:56
Over the past three years I've converted around 40 or my VHS tape collection to DVD. Most of these have been my son's Disney movies. The process I use is:
1. VCR > Sony TRV-320 DV camera > PC (passthrough via firewire)
2. Capture using Ulead VideoStudio 6 (which I got off ebay for $20) and the Pansonic DV codec. The captured AVI is RGB24, 720x480, interlaced w/BFF, 29.97 fps.
3. Strip and edit audio using Goldwave. (The audio is encoded to ac3 using TDA 1.6 w/ac3 plug-in).
4. Encode video using CCE-Basic. I use 2-pass VBR with a minimum of 500 kbps & a maximum of 9500 kbps. The average is set to what will fit on a single-layer DVDR. Up to now, my avs script to CCE-Basic has just been used to trim the video and convert it from RGB24 to YUY2.
5. On my last convert I decided to be a bit more adventurous and try using some of the noise filtering plug-ins for AVSynth. All my avi captures to date have looked good without any filtering but I wanted to see if I were missing out on better quality.
6. So here's the script that I used to frameserve two of my most recent Disney VHS tape captures.
# Load Source Video
AviSource("G:\VHS_CAP\101_DALMATIANS.avi",audio = false).Trim(0,143246).ConverttoYUY2
# De-Interlace
SeparateFields()
# De-Noise
Convolution3D(1, 6, 10, 6, 8, 2.8, 0)
# Interlace
Weave()
8. The resultant filter video did look better in VirtualDub in serval frames than the raw source avi.
7. My encoding time with CCE-Basic for a 2-pass VBR increased from around 60 to 90-minutes per 1-hour of source to well over 3-hours per 1-hour of source.
8. The encoded and authored video did look better to me than previous conversions on both my TV and PC screen.
Also, what would be the expected differences between using the above script and this one,
# Load Source Video
AviSource("G:\VHS_CAP\101_DALMATIANS.avi",audio = false).Trim(0,143246).ConverttoYUY2
# De-Interlace
SeparateFields()
# De-Noise
odd=SelectOdd.Convolution3D(1, 6, 10, 6, 8, 2.8, 0)
evn=SelectEven.Convolution3D(1, 6, 10, 6, 8, 2.8, 0)
# Interlace
Interleave(evn,odd).Weave
1. VCR > Sony TRV-320 DV camera > PC (passthrough via firewire)
2. Capture using Ulead VideoStudio 6 (which I got off ebay for $20) and the Pansonic DV codec. The captured AVI is RGB24, 720x480, interlaced w/BFF, 29.97 fps.
3. Strip and edit audio using Goldwave. (The audio is encoded to ac3 using TDA 1.6 w/ac3 plug-in).
4. Encode video using CCE-Basic. I use 2-pass VBR with a minimum of 500 kbps & a maximum of 9500 kbps. The average is set to what will fit on a single-layer DVDR. Up to now, my avs script to CCE-Basic has just been used to trim the video and convert it from RGB24 to YUY2.
5. On my last convert I decided to be a bit more adventurous and try using some of the noise filtering plug-ins for AVSynth. All my avi captures to date have looked good without any filtering but I wanted to see if I were missing out on better quality.
6. So here's the script that I used to frameserve two of my most recent Disney VHS tape captures.
# Load Source Video
AviSource("G:\VHS_CAP\101_DALMATIANS.avi",audio = false).Trim(0,143246).ConverttoYUY2
# De-Interlace
SeparateFields()
# De-Noise
Convolution3D(1, 6, 10, 6, 8, 2.8, 0)
# Interlace
Weave()
8. The resultant filter video did look better in VirtualDub in serval frames than the raw source avi.
7. My encoding time with CCE-Basic for a 2-pass VBR increased from around 60 to 90-minutes per 1-hour of source to well over 3-hours per 1-hour of source.
8. The encoded and authored video did look better to me than previous conversions on both my TV and PC screen.
Also, what would be the expected differences between using the above script and this one,
# Load Source Video
AviSource("G:\VHS_CAP\101_DALMATIANS.avi",audio = false).Trim(0,143246).ConverttoYUY2
# De-Interlace
SeparateFields()
# De-Noise
odd=SelectOdd.Convolution3D(1, 6, 10, 6, 8, 2.8, 0)
evn=SelectEven.Convolution3D(1, 6, 10, 6, 8, 2.8, 0)
# Interlace
Interleave(evn,odd).Weave