Quantcast KVCD: Should I Modify the Decomb_25 Decimate() Line? - digitalFAQ.com Forums [Archives]
  #1  
10-04-2003, 09:29 AM
nicksteel nicksteel is offline
Free Member
 
Join Date: Nov 2002
Posts: 863
Thanks: 0
Thanked 0 Times in 0 Posts
Just went through the Decomb Tutorial with decomb500b16.dll.

The results were:

Telecide(order=1,guide=1,post=2,vthresh=28,show=tr ue)
Decimate()

My script from MovieStacker is:

mpeg2Source("h:\wintvvid\film.d2v")
Trim(5476,42104)+Trim(48856,66436)+Trim(73961,9819 6)+Trim(105120,127739)+Trim(134815,150149)+Trim(15 7380,179084)+Trim(187199,202904)+Trim(210113,21965 9)
ConvertToYV12()
Telecide(guide=0, gthresh=30, post=true, threshold=15, dthreshold=9, blend=true, show=false, agg=false, reverse=false, firstlast=false, chroma=false, nt=0, mm=0)
Decimate(cycle=5, mode=0, threshold=0, threshold2=3, quality=2, show=false)
GripCrop(704, 480, source_anamorphic=false, dest_anamorphic=true)

decomb500b16.dll gives me avisynth errors. I have been using decomb_25_dl_20030327.dll with avisynth 2.52.

What should the decomb_25 dll line for Telecide() look like with the information generated using decomb500b16?

Also, how should I modify the decomb_25 Decimate() line?


Really confused.
Reply With Quote
Someday, 12:01 PM
admin's Avatar
Site Staff / Ad Manager
 
Join Date: Dec 2002
Posts: 42
Thanks: ∞
Thanked 42 Times in 42 Posts
  #2  
10-04-2003, 11:53 AM
ak47 ak47 is offline
Free Member
 
Join Date: Oct 2002
Posts: 168
Thanks: 0
Thanked 0 Times in 0 Posts
Well there is a non beta Decomb plugin of 5.0 at http://neuron2.net/decomb/decomb.html but somehow the page is down.
But you can try SmartDecimate at http://forum.doom9.org/showthread.ph...threadid=60031
It is the rival of Decomb I think it is just at good....maybe better.

Hopefully that will help you, if you have anymore problems post what type of movie you are doing if its cartoon/anime or live action, a lot if its interlaced or not.
__________________
Later ak
Reply With Quote
  #3  
10-04-2003, 12:43 PM
incredible incredible is offline
Free Member
 
Join Date: May 2003
Location: Germany
Posts: 3,189
Thanks: 0
Thanked 0 Times in 0 Posts
Send a message via ICQ to incredible
I just love the advice from Dial_Hot to use the internal smartdeinterlace function of the MPEG2Enc3.dll engine.
Just Add (in YUY2 Mode) ...

SmartDeinterlace(2,15,true,false,true)

To your script, its a very good and fast adaptive deinterlcing engine. But it doesn't performe a InverseTelecine.
Reply With Quote
  #4  
10-05-2003, 04:02 AM
Boulder Boulder is offline
Free Member
 
Join Date: Sep 2002
Location: Lahti, Finland
Posts: 1,652
Thanks: 0
Thanked 0 Times in 0 Posts
I think that a crashbug was fixed before Decomb got off beta. Get the v5.0.0, it should work fine.

http://neuron2.net -> Mine -> Decomb Filter Package.

You don't need the ConverttoYV12 line, MPEGs are already in YV12 (make sure you use MPEG2DEC3.dll).

EDIT: your script should look like this:

Code:
mpeg2Source("h:\wintvvid\film.d2v") 
Trim(5476,42104)+Trim(48856,66436)+Trim(73961,98196)+Trim(105120,127739)+Trim(134815,150149)+Trim(157380,179084)+Trim(187199,202904)+Trim(210113,219659) 
Telecide(order=1,guide=1,post=2,vthresh=28,show=true) 
Decimate() 
GripCrop(704, 480, source_anamorphic=false, dest_anamorphic=true)
Reply With Quote
  #5  
10-05-2003, 05:18 AM
nicksteel nicksteel is offline
Free Member
 
Join Date: Nov 2002
Posts: 863
Thanks: 0
Thanked 0 Times in 0 Posts
Quote:
Originally Posted by Boulder
I think that a crashbug was fixed before Decomb got off beta. Get the v5.0.0, it should work fine.

http://neuron2.net -> Mine -> Decomb Filter Package.

You don't need the ConverttoYV12 line, MPEGs are already in YV12 (make sure you use MPEG2DEC3.dll).

EDIT: your script should look like this:

Code:
mpeg2Source("h:\wintvvid\film.d2v") 
Trim(5476,42104)+Trim(48856,66436)+Trim(73961,98196)+Trim(105120,127739)+Trim(134815,150149)+Trim(157380,179084)+Trim(187199,202904)+Trim(210113,219659) 
Telecide(order=1,guide=1,post=2,vthresh=28,show=true) 
Decimate() 
GripCrop(704, 480, source_anamorphic=false, dest_anamorphic=true)
Thanks, Boulder!

"The package automatically adapts to any telecine/capture patterns, e.g., 3:2 NTSC or 1:1 PAL, and mixtures thereof, although if you want to decimate the recovered progressive stream, you have to specify the desired decimation ratio."

How do I find the decimation ratio?
Reply With Quote
  #6  
10-05-2003, 07:48 AM
Boulder Boulder is offline
Free Member
 
Join Date: Sep 2002
Location: Lahti, Finland
Posts: 1,652
Thanks: 0
Thanked 0 Times in 0 Posts
The ratio is most likely one duplicate every 5 frames. Which means you can just forget it and use Decimate() which will turn your 29.97fps capture into 23.976fps, removing the dupes.
Reply With Quote
  #7  
10-05-2003, 08:13 AM
nicksteel nicksteel is offline
Free Member
 
Join Date: Nov 2002
Posts: 863
Thanks: 0
Thanked 0 Times in 0 Posts
Quote:
Originally Posted by Boulder
The ratio is most likely one duplicate every 5 frames. Which means you can just forget it and use Decimate() which will turn your 29.97fps capture into 23.976fps, removing the dupes.
Great, and, thanks!

Seems to be working so far. I'm trying out my new PVR-250 capture board. I'm capturing mpeg's at 720x480. The best script seems to be the MA one, with high quality rather than motion estimate. The best template seems to be KVCDx3-2 reset to 704x480.
Reply With Quote
Reply




Similar Threads
Thread Thread Starter Forum Replies Last Post
KVCD: Equals sign is necessary per 245 line? rodrx Video Encoding and Conversion 9 03-08-2005 01:57 PM
Re-authoring to modify menu only? viperuk Authoring VCD, DVD, Blu-ray 1 10-27-2003 04:44 PM
Telecide() and Decimate() causes skips? nicksteel Video Encoding and Conversion 6 05-14-2003 08:08 AM
DVD2SVCD: How do I modify the avs file? telemike Video Encoding and Conversion 15 04-17-2003 11:01 AM
Avisynth: Problems with telecide and decimate conquest10 Avisynth Scripting 2 01-01-2003 11:28 PM

Thread Tools



 
All times are GMT -5. The time now is 05:52 AM  —  vBulletin © Jelsoft Enterprises Ltd