Welcome to Doom9's Forum, THE in-place to be for everyone interested in DVD conversion.

Before you start posting please read the forum rules. By posting to this forum you agree to abide by the rules.

 

Go Back   Doom9's Forum > Capturing and Editing Video > Avisynth Usage

 
 
Thread Tools Search this Thread Display Modes
Prev Previous Post   Next Post Next
Old 8th September 2005, 09:40   #11  |  Link
MOmonster
Registered User
 
Join Date: May 2005
Location: Germany
Posts: 495
I just installed the newest avisynth and has no problems to run my script.
I think mg262 is right. You doesnīt set all the clips.
My function needs three different clips, the source clip the bobbed clip for the output and the bobbed clip for the analyse. This is my script:
Code:
LoadPlugin("C:\program_me\dgmpgdec\DGDecode.dll")
LoadPlugin("C:\program_me\filters\leakkerneldeint.dll")
LoadPlugin("C:\program_me\filters\TDeint.dll")

import("D:\work\C_package.avs")

MPEG2Source("D:\dvd.d2v")
#ConvertToYUY2(interlaced=true)

#crop(16,32,-16,-32)
ord = last.getparity() ? 1 : 0

a = last.leakkernelbob(order=ord, sharp=false, twoway=false, threshold=4)
b = a.crop(32,32,-32,-32).BilinearResize(640,352)

Crestore_film(bob=a, bclip=b, bthreshmin=48)
It is necessary to set the bob clip and the bclip. If you donīt set the clips direct, you can also do it that way.
Code:
ord = last.getparity() ? 1 : 0

a = last.tdeint(mode=1)
b = last.leakkernelbob(order=ord, sharp=false, twoway=false, threshold=4).crop(32,32,-32,-32).BilinearResize(640,352)

Crestore_film(last,a,b)
That a fast smart bobber for bclip and your favourite bobber for bob.The first clip Crestore use is the sourceclip (last). For optimal settings, please read the readme.
MOmonster is offline   Reply With Quote
 

Tags
mrestore, srestore

Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT +1. The time now is 06:25.


Powered by vBulletin® Version 3.8.11
Copyright ©2000 - 2024, vBulletin Solutions Inc.