Hi you all,
I want to thank especially to Kwag, Black Prince, SansGrip, Donald Graft, you guy's are really professionals!!
I was searching such a long time for a method to produce real good VideoCD'S. I have a lot of old VHS Cassettes which I want to brought to VideoCD'S in good quality.
I read all your guides (especially that one from black prince, BIG THANXXX) an with my first try I get such a quality as output, I never seen before. And it work perfectly in all my DVD HW-Player's (have 3pcs)
Also I am a one CD Freak, and since I found you on the Net (2 Weeks ago) I produce also some premium DVD Copy's, (Blade 2, A Beautiful Mind,.... )
Here my way to do some real good CD'S, maybe I can help to somebody:
I am working with AviSynth 2.0.7 and Tmpeg 2.5.10
VHS Restauration:
I am using an MPEG-2 Decoding PCI Card in my PC from a german producer, called
http://www.vidac.de. I connect a VHS Player to this card and record a VHS Cassette in best quality I can (MPEG-2 720x576)
The result is a *.mpv (MPEG-2) and a *.wav output.
After producing the MPEG-2 Files I was used the following Script, with the PAL plus 352x288 Template, and changed with the datas from the Black Prince Guide (Gop 24, KVCD Notch) and get fantastic results on one CD 700 MB:
This is the Script from "The Prince of Egypt" on noisy VHS Source, Fit on a 700 MB CD , Sound quality 160kbps, CQ 77 in Tmpeg, Movie is 1h 30min
-----------------------------------------------------------------------------
LoadPlugin("C:\XVCD\Bearbeitung\MPEG2DEC.dll")
LoadPlugin("C:\XVCD\Bearbeitung\LegalClip.dll")
LoadPlugin("C:\XVCD\Bearbeitung\Sampler.dll")
LoadPlugin("C:\XVCD\Bearbeitung\Blockbuster.dll")
LoadPlugin("C:\XVCD\Bearbeitung\Msharpen.dll")
LoadPlugin("C:\XVCD\Bearbeitung\FluxSmooth.dll")
LoadPlugin("C:\XVCD\Bearbeitung\Ghostbuster.dll")
LoadPlugin("C:\XVCD\Bearbeitung\DustV5.dll")
LoadPlugin("C:\XVCD\Bearbeitung\TemporalCleanerOld .dll")
LoadPlugin("C:\XVCD\Bearbeitung\GripFit_Preview.dl l")
LoadPlugin("C:\XVCD\Bearbeitung\DecombLegacy.DLL")
mpeg2source("C:\XVCD\DVDAVI\film.d2v")
#
LegalClip()
BilinearResize(352,288,0,2,720,576)
FluxSmooth()
FaeryDust()
Blockbuster(method="noise", variance=.8, seed=1)
Msharpen(threshold=15,strength=150)
TemporalCleaner()
AddBorders(16,17,16,17)
LegalClip()
#Sampler(length=24)
------------------------------------------------------------------------------
DVD Copy:
For DVD Copy I am using DVD Decrypter for Ripping, Black Prince Guide Changes (GOP 24, KVCD Notch) and the KVCDx3 528x576 Template. Here is my script for Blade II , Fit on a 700MB CD, CQ Rate 50 in TMPEG, Movie is 1h 52min
-------------------------------------------------------------------------------
LoadPlugin("C:\XVCD\Bearbeitung\MPEG2DEC.dll")
LoadPlugin("C:\XVCD\Bearbeitung\LegalClip.dll")
LoadPlugin("C:\XVCD\Bearbeitung\Sampler.dll")
LoadPlugin("C:\XVCD\Bearbeitung\Blockbuster.dll")
LoadPlugin("C:\XVCD\Bearbeitung\Msharpen.dll")
LoadPlugin("C:\XVCD\Bearbeitung\FluxSmooth.dll")
LoadPlugin("C:\XVCD\Bearbeitung\Ghostbuster.dll")
LoadPlugin("C:\XVCD\Bearbeitung\DustV5.dll")
LoadPlugin("C:\XVCD\Bearbeitung\TemporalCleanerOld .dll")
LoadPlugin("C:\XVCD\Bearbeitung\GripFit_Preview.dl l")
LoadPlugin("C:\XVCD\Bearbeitung\DecombLegacy.DLL")
mpeg2source("C:\XVCD\DVDAVI\film.d2v")
#
LegalClip()
GripCrop(width=528, height=576, overscan=2)
GripSize()
SpaceDust()
Blockbuster(method="noise", variance=.3, seed=1)
Msharpen()
TemporalCleaner()
GripBorders()
LegalClip()
#Sampler(length=24)
--------------------------------------------------------------------------------