1 (edited by DaveyMames 01-07-2015 18:44:27)

Topic: Can't get SmoothVideo to Work

I'm trying to convert a 720p 29.97fps .ts video to 59.94fps. Here's my Avisynth script:

setmtmode(5,6)
DGSource("C\30fps Sample.dgi")
setmtmode(2)

LoadPlugin("C:\Program Files (x86)\AviSynth 2.5\plugins\svpflow1.dll")
LoadPlugin("C:\Program Files (x86)\AviSynth 2.5\plugins\svpflow2.dll")
Import("C:\Program Files (x86)\AviSynth 2.5\plugins\InterFrame2.avsi")
dss2("C:\30fps Sample.ts", fps=29.970)
InterFrame(Cores=Cores)

AvsPmod says there is no function named dss2. I've copied the following files into my Avisynth Plugins folder:

InterFrame2.avsi
svpflow2.dll
svpflow1.dll

Re: Can't get SmoothVideo to Work

so, obviously there's no function named dss2  big_smile

Re: Can't get SmoothVideo to Work

OK. What is DSS2 and why was mentioned in the script if I'm not supposed to use it?

Re: Can't get SmoothVideo to Work

you're missing 'avss.dll'

may be you should stick to the guide, step by step?

Re: Can't get SmoothVideo to Work

I read the guide before posting. I already have K-Lite Code pack installed (it's the basic pack). Haali is installed here: C:\Program Files (x86)\K-Lite Codec Pack\Filters\Haali. All the files in that folder are as follows:

avi.dll
avs.dll
avss.dll
mkunicode.dll
mkx.dll
mkzlib.dll
mp4.dll
splitter.ax
ts.dll

I already have the avss.dll file so what am I doing wrong?

Also what is DSS2? I can't find anything on Google which explains what it is.

Re: Can't get SmoothVideo to Work

LoadPlugin("avss.dll")

what is DSS2?

source filter. it actually reads the source file.

Re: Can't get SmoothVideo to Work

DaveyMames
You can copy avss.dll to avisynth plugins folder and use AVS-script as is. Plugin avss.dll will be loaded automatically.