@malowz - VirtualDub Script

Kimberly wrote on 9/12/2012, 9:51 PM
It's been two months and I'm working through some advice you gave me about deinterlacing . . .

http://www.sonycreativesoftware.com/forums/ShowMessage.asp?ForumID=4&MessageID=819232

Here is my script (shamelessly copied from your example):

Filename: script.avs

LOADCPLUGIN("C:\Program Files (x86)\AviSynth 2.5\plugins\YADIF.DLL")
AVISOURCE("C:\Users\Forbragdkj\Downloads\cx760 Test Footage\2012-09-11\60i.mts", pixel_type="RGB24")
ConvertToYUY2(matrix="PC.601", interlaced=true)
LanczosResize(720,1080)
Yadif(mode=1, order=1)
LanczosResize(720,480)
SeparateFields()
SelectEvery(4,1,2)
Weave()

And here is my error message:



I am trying to open the file in VirtualDub by choosing
File
Open Video File
and then I select the *.AVS file.

Clearly I am doing some wrong, but I don't know how to troubleshoot my error. Can you give me a few hints?

Regards,

Kimberly

Comments

malowz wrote on 9/12/2012, 10:34 PM
uh... i almost got a heart attack when i see my nickname on the title... ;P

the AVIsource function can only import .AVI files...

transport stream can be opened i think with directshowsource if you have directshow decoders installed. put this line instead of the AVIsource:

directshowsource("video file with path.mts")

and try again.

as i only use AVI (i convert everything to intermediate - Canopus HQ) im no expert on opening "not-so-friendly-formats" on avisynth...