i have about 200 promo only music videos in vob all are ntsc none are pal converted to ntsc there or originally ntsc i know how to convert to x264 ect
i just wanted to know the best way to IVTC them
+ Reply to Thread
Results 1 to 15 of 15
-
-
-
That one can't be IVTC'd as it was never telecined in the first place. Plus, it's got blended fields. My suggestion is to unblend it like so:
Yadif(Mode=1)#or the bobber of your choice
SRestore(Frate=23.976)
There will still be lots of duplicate frames as they were playing with the framerate. There may still be some blended frames. There won't be any more interlacing.
http://avisynth.org/mediawiki/Srestore
http://forum.doom9.org/showthread.php?t=95924 -
-
The SRestore.avs should probably be loaded into the script with an Import line:
Import("C:\Path\To\SRestore.avs")
The DLLs should autoload if in the AviSynth Plugins folder. If you have any problems with any of them, they can be loaded into the script using a LoadPlugin line:
LoadPlugin("C:\Path\To\Average.dll")
If you get any error messages you can't figure out when testing the script in VDub(Mod), post the message and the complete script. -
Last edited by jamespoo; 24th Mar 2011 at 16:49.
-
Here's the script you uploaded:
I said Yadif(Mode=1), not Order=1. If you don't know the difference, read the Yadif doc. 692x386 is a very bad resolution as the height is only Mod 2 and the width only Mod4. Do you have MaskTools2, TIVTC, and RemoveGrain in your Plugins folder, as required by SRestore? You should probably put SRestore right after the Yadif line, before the crop and resize. Other than that I don't quite understand why you get the error message. Maybe someone else can spot the error.# Set DAR in encoder to 612 : 386. The following line is for automatic signalling
global MeGUI_darx = 612
global MeGUI_dary = 386
Import("C:\Program Files\AviSynth 2.5\plugins\SRestore.avs")
LoadPlugin("C:\Program Files\AviSynth 2.5\plugins\Average.dll")
LoadPlugin("C:\Program Files\MeGUI\tools\dgindex\DGDecode.dll")
DGDecode_mpeg2source("C:\Users\james\Desktop\vob\1 .d2v", info=3)
Load_Stdcall_Plugin("C:\Program Files\MeGUI\tools\yadif\yadif.dll")
Yadif(order=1)
crop( 10, 44, -16, -50)
LanczosResize(692,386)Last edited by manono; 24th Mar 2011 at 17:10.
-
Similar Threads
-
is it possible to ivtc a 29fps ntsc source to 25fps xvid with gnot?
By iamtehsux in forum Newbie / General discussionsReplies: 65Last Post: 28th Dec 2010, 09:22 -
Question Re IVTC, DGIndex & NTSC Source
By onesikgypo in forum Video ConversionReplies: 7Last Post: 18th Aug 2009, 04:58 -
How do I deinterlace? How do I IVTC? How do I use DGIndex?
By rocky12 in forum Newbie / General discussionsReplies: 71Last Post: 17th May 2009, 22:41 -
Can't properly DeInterlace or IVTC
By igoryonya in forum Video ConversionReplies: 46Last Post: 4th Mar 2009, 18:47 -
IVTC'ing NTSC source with random pattern
By miggeth in forum Video ConversionReplies: 28Last Post: 23rd Jun 2008, 04:12



Quote