edguit@r
21st August 2002, 19:55
Hi all,
I used an avisynth script generated by Gknot to encode some stuff from the "Lord Of The Rings" DVD. To correct the gamma of original video I added the "levels" command to get a better picture. The source is 4:3 NTSC pure interlaced Video, so I also choosed to do an IVTC using Decomb 3.9. The script looked like this:
##
LoadPlugin("x:\path\mpeg2dec.dll")
LoadPlugin("Z:\path\decomb.dll")
mpeg2source("MyDVD2AVIproject.d2v")
Telecide()
Decimate(cycle=5)
crop(8,0,703,478)
levels(0,1.3,255,0,255)
BicubicResize(544,416,0,0.5)
##
The problem is that VirtualDub gives me an error, telling me that it can not read from the source (???). My DVD2AVI project was made with no field operations (for a future IVTC).
So I made some changes in the avisynth script, having sucess with the following:
##
LoadPlugin("C:\VIDEOA~1\GORDIA~1\mpeg2dec.dll")
LoadPlugin("C:\VIDEOA~1\GORDIA~1\decomb.dll")
mpeg2source("MyDVD2AVIproject.d2v")
Telecide()
Decimate(cycle=5)
crop(8,0,703,478)
BicubicResize(544,416,0,0.5)
levels(0,1.3,255,0,255)
##
With this script I could open the source, but the encoding was slow like hell. It took about 5 hours only for first pass on DivX 5-two-pass encoding. The total encoding time was 9 hours and 40 minutes. The result video was fine to me. No problems at all. The Video was 01 hour and 20 min long.
Did I do anything wrong?
I am using an Athlon XP 1600+/512Mb DDR/Soyo Dragon Plus.
The Avisynth version is 1.0beta6.
By the way, is there any better script solution to encode a pure interlaced NTSC video? The commands in Decomb/Avisynth to peform a IVTC on a hybrid video source (Film Progressive/Ntsc Interlaced) are the same I used above?
I'll apreciate any comments and help.
Thanks.
I used an avisynth script generated by Gknot to encode some stuff from the "Lord Of The Rings" DVD. To correct the gamma of original video I added the "levels" command to get a better picture. The source is 4:3 NTSC pure interlaced Video, so I also choosed to do an IVTC using Decomb 3.9. The script looked like this:
##
LoadPlugin("x:\path\mpeg2dec.dll")
LoadPlugin("Z:\path\decomb.dll")
mpeg2source("MyDVD2AVIproject.d2v")
Telecide()
Decimate(cycle=5)
crop(8,0,703,478)
levels(0,1.3,255,0,255)
BicubicResize(544,416,0,0.5)
##
The problem is that VirtualDub gives me an error, telling me that it can not read from the source (???). My DVD2AVI project was made with no field operations (for a future IVTC).
So I made some changes in the avisynth script, having sucess with the following:
##
LoadPlugin("C:\VIDEOA~1\GORDIA~1\mpeg2dec.dll")
LoadPlugin("C:\VIDEOA~1\GORDIA~1\decomb.dll")
mpeg2source("MyDVD2AVIproject.d2v")
Telecide()
Decimate(cycle=5)
crop(8,0,703,478)
BicubicResize(544,416,0,0.5)
levels(0,1.3,255,0,255)
##
With this script I could open the source, but the encoding was slow like hell. It took about 5 hours only for first pass on DivX 5-two-pass encoding. The total encoding time was 9 hours and 40 minutes. The result video was fine to me. No problems at all. The Video was 01 hour and 20 min long.
Did I do anything wrong?
I am using an Athlon XP 1600+/512Mb DDR/Soyo Dragon Plus.
The Avisynth version is 1.0beta6.
By the way, is there any better script solution to encode a pure interlaced NTSC video? The commands in Decomb/Avisynth to peform a IVTC on a hybrid video source (Film Progressive/Ntsc Interlaced) are the same I used above?
I'll apreciate any comments and help.
Thanks.