Author
|
Topic: John Yapp's telecine
|
|
John Yapp
Expert Film Handler
Posts: 148
From: Telford England.
Registered: Dec 2011
|
posted April 07, 2013 04:46 PM
Hi John, No_Dups is a Avisynth script for removing duplicate frames before using Videofred's film restoring script. It makes Fred's script work MUCH better.
The actual script is very simple.
LoadPlugin("DGbob.dll") LoadPlugin("FDecimate.dll")
DirectShowSource("your filname here.avi") ConvertToYUY2()
# Convert to fields and shifting every other field by half a line: DGBob(order=0,thresh=12)
# Remove duplicate frames: # In the last line, you need to fine tune the resulting frame rate (currently 16.0). Fractional numbers are allowed. # In the ideal case, you should see no duplicate frames and no skipped frames. FDecimate(rate=16.6667, threshold=3)
just copy and paste this text into notepad, and save as No_Dups.avs. Remember to save as "other files" rather than as text, or the script won't work.
As you can see, the script calls on two filters, DGbob.dll" and "FDecimate.dll". You should find these available to download easily enough. If not, PM me.
| IP: Logged
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|