DvPs
26th January 2005, 14:35
hi
i am using dvd rebuilder and cce to backup dvds.
at the moment i am searching good scripts for the avisynth frame server.
main movie (i change the crop and addborders numbers from film to film)
LoadPlugin("C:\Programme\AviSynth 2.5\plugins\DGDecode.dll")
mpeg2source("M:\RIPPEN\BILL2\D2VAVS\V01.D2V",idct=7)
trim(0,2874)
Crop(4,76,712,424)
Undot()
ConvertToYUY2()
TemporalSoften(1,6,4,15,2)
AddBorders(4,76,4,76)
ConvertToYUY2(interlaced=true)
AudioDub(BlankClip())
for extras (i have used this also a long time for the main movie, but GripCrop cuts to much from the sides (you don't see the difference on TV, but i don't want to lose so much video information):
t = GripCrop(720,576,overscan=0)
a = width(t)%8
b = height(t)%8
Crop(t,(a/2)*2,(b/2)*2,0-a+((a/2)*2),0-b+((b/2)*2))
Undot()
ConvertToYUY2()
TemporalSoften(1,6,4,15,2)
AddBorders((720-width)/2,(576-height)/2,(720-width)/2,(576-height)/2)
what filter would be good in order to become a good video quality with a bitrate from about 3000?
is it better not to use any filter in order not to manipulate the material? or will the movie become unsharp without no filter and needs a filter to sharpen it?
mfg DvP
i am using dvd rebuilder and cce to backup dvds.
at the moment i am searching good scripts for the avisynth frame server.
main movie (i change the crop and addborders numbers from film to film)
LoadPlugin("C:\Programme\AviSynth 2.5\plugins\DGDecode.dll")
mpeg2source("M:\RIPPEN\BILL2\D2VAVS\V01.D2V",idct=7)
trim(0,2874)
Crop(4,76,712,424)
Undot()
ConvertToYUY2()
TemporalSoften(1,6,4,15,2)
AddBorders(4,76,4,76)
ConvertToYUY2(interlaced=true)
AudioDub(BlankClip())
for extras (i have used this also a long time for the main movie, but GripCrop cuts to much from the sides (you don't see the difference on TV, but i don't want to lose so much video information):
t = GripCrop(720,576,overscan=0)
a = width(t)%8
b = height(t)%8
Crop(t,(a/2)*2,(b/2)*2,0-a+((a/2)*2),0-b+((b/2)*2))
Undot()
ConvertToYUY2()
TemporalSoften(1,6,4,15,2)
AddBorders((720-width)/2,(576-height)/2,(720-width)/2,(576-height)/2)
what filter would be good in order to become a good video quality with a bitrate from about 3000?
is it better not to use any filter in order not to manipulate the material? or will the movie become unsharp without no filter and needs a filter to sharpen it?
mfg DvP