View Full Version : CCE Project help please
Amrit
4th February 2008, 00:10
Hey guys i am doing a CCE from a dvd9. THis is a Bollywood movie.
the name is Qurbani (http://www.imdb.com/title/tt0246879/)
here are some Screen Shots of the Source
http://s2.disperseit.com/attachment.php?attachmentid=2932
http://s2.disperseit.com/attachment.php?attachmentid=2933
http://s2.disperseit.com/attachment.php?attachmentid=2934
http://s2.disperseit.com/attachment.php?attachmentid=2935
http://s2.disperseit.com/attachment.php?attachmentid=2936
http://s2.disperseit.com/attachment.php?attachmentid=2937
http://s2.disperseit.com/attachment.php?attachmentid=2938
Sample Here (http://maxupload.com/A205E79E)
This is the Script i made up
ColorMatrix(hints=true,interlaced=true)
tfm(order=1).tdecimate()
FFT3DFilter(sigma=1,bw=32/2,bh=32/2,ow=16/2,oh=16/2,bt=3,plane=4)
LimitedSharpenFaster(ss_x=1.25,ss_y=1.25,Smode=4,strength=100,soft=15)
Tweak(sat=1.05, bright=3)
Please help me with this script and tell me how to improve
I am doing this CCE in dvdrb because i have no clue how to rip manually
Thanks
Amrit
5th February 2008, 00:11
can anyone help me please?
PhillipWyllie
5th February 2008, 15:13
Are you needing help woth imporving the video? If so this post is in the wrong section, it should be in the avisynth section. The sample images look fine, but I'd crop out the black-bars and let CCE put them in(cleaner and crisper)-make sure the cropped video is mod 8 though(dimensions divisable by 8).
Amrit
5th February 2008, 23:29
Are you needing help woth imporving the video? If so this post is in the wrong section, it should be in the avisynth section. The sample images look fine, but I'd crop out the black-bars and let CCE put them in(cleaner and crisper)-make sure the cropped video is mod 8 though(dimensions divisable by 8).
i am cce with dvd rb
so will cce + dvd rb do it automatically??
@mods can u move to avisynth section
PhillipWyllie
6th February 2008, 00:06
DVD RB, what's that?
Amrit
6th February 2008, 00:08
DVD RB, what's that?
dvd rebuilder
Fishman0919
6th February 2008, 03:33
DVD RB, what's that?
Wow.... sorry Link (http://forum.doom9.org/forumdisplay.php?f=75)
manono
8th February 2008, 13:06
I was just working with Qurbani today. I only IVTC'd it. I guess you don't know that you won't be able to IVTC it and use DVD-Rebuilder as DVD-RB doesn't support anything that changes the framerate. If you want to IVTC it, you'll have to encode it manually. And I don't believe you need the Color Matrix filter.
Except for the IVTC, I pretty much left it alone. In my book the DVD has 2 really big strikes against it. It's widescreen 4:3 and I decided not to convert it to 16:9, and there are no subtitles for the songs. And since I don't speak a word of Hindi, I had to track down translations for the songs and stick them into the subs. Lots of work.
Amrit
9th February 2008, 20:04
I was just working with Qurbani today. I only IVTC'd it. I guess you don't know that you won't be able to IVTC it and use DVD-Rebuilder as DVD-RB doesn't support anything that changes the framerate. If you want to IVTC it, you'll have to encode it manually. And I don't believe you need the Color Matrix filter.
Except for the IVTC, I pretty much left it alone. In my book the DVD has 2 really big strikes against it. It's widescreen 4:3 and I decided not to convert it to 16:9, and there are no subtitles for the songs. And since I don't speak a word of Hindi, I had to track down translations for the songs and stick them into the subs. Lots of work.
yeah i dont know how to do it manually so this i used decomb in dvd rb
here was my script
ColorMatrix(hints=true,interlaced=true)
Crop(0, 84, 0, -84)
FluxSmoothST(7,7)
LimitedSharpenFaster(ss_x=1.25,ss_y=1.25,Smode=4,strength=150,soft=-1) Tweak(sat=1.05, bright=3)
AddBorders(0, 84, 0, 84)
i lost the avs but that was the script w/o the deinterlacing part
i wish i knew hot to do it manually :(
Amrit
9th February 2008, 21:02
here is the script i used
LoadPlugin("C:\Program Files\DVD-RB PRO\DGDecode.dll")
LoadPlugin("C:\Program Files\AviSynth 2.5\plugins\Decomb521.dll")
mpeg2source("C:\DOCUMENTS AND SETTINGS\AMRIT\DESKTOP\NEW FOLDER (4)\D2VAVS\V05.D2V", cpu=2, info=3)
FieldDeinterlace(blend=false)
ColorMatrix(hints=true,interlaced=true)
Crop(0, 84, 0, -84)
FluxSmoothST(7,7)
LimitedSharpenFaster(ss_x=1.25,ss_y=1.25,Smode=4,strength=150,soft=-1) Tweak(sat=1.05, bright=3)
AddBorders(0, 84, 0, 84)
trim(0,17924)
SeparateFields().SelectEvery(2,0)
ConvertToYUY2()
AudioDub(BlankClip())
manono
10th February 2008, 08:57
Boy was that a mistake. Better would have been to leave it interlaced. What you did with FieldDeinterlace(blend=false) was, first, deinterlace it unnecessarily, and second, create a duplicate frame every fifth frame and make it play jerky.
Also ColorMatrix hints don't work (I don't think) unless the ColorMatrix line immediately follows the MPEG2Source line. I'm at a different computer than my encoding one, so I can't check the doc to be sure. And, of course, by sticking the ColorMatrix line after the deinterlacer, it's no longer interlaced. And what's this business all about:
SeparateFields().SelectEvery(2,0)
I don't think that's the script you used in DVD-RB. It would be much better for you to IVTC it and encode it manually. Doom9 has several guides for CCE. If you're going to work with funky Indian DVDs, you had better know what you're doing.
Amrit
15th February 2008, 01:43
Boy was that a mistake. Better would have been to leave it interlaced. What you did with FieldDeinterlace(blend=false) was, first, deinterlace it unnecessarily, and second, create a duplicate frame every fifth frame and make it play jerky.
Also ColorMatrix hints don't work (I don't think) unless the ColorMatrix line immediately follows the MPEG2Source line. I'm at a different computer than my encoding one, so I can't check the doc to be sure. And, of course, by sticking the ColorMatrix line after the deinterlacer, it's no longer interlaced. And what's this business all about:
SeparateFields().SelectEvery(2,0)
I don't think that's the script you used in DVD-RB. It would be much better for you to IVTC it and encode it manually. Doom9 has several guides for CCE. If you're going to work with funky Indian DVDs, you had better know what you're doing.
dvd rb did the seperate filels not me
thanks for ur imput
vBulletin® v3.8.11, Copyright ©2000-2026, vBulletin Solutions Inc.