Topic: Can SVP 4 generate AVS scripts?

This option:

http://i.imgur.com/FjSMxIM.png

It is one of the features i use the most, but i cannot find it on SVP4.

Is there a way to do it? Because i don't find the option.

Re: Can SVP 4 generate AVS scripts?

Sure
https://lh3.googleusercontent.com/-IiH3WfsIgjA/WB_dSG3HGFI/AAAAAAAAL0w/tFW039j2cuY/s0/Shadowverse_2016-11-07_04-47-48.png

3 (edited by Unknown01 07-11-2016 02:10:23)

Re: Can SVP 4 generate AVS scripts?

dlr5668 wrote:

Sure
https://lh3.googleusercontent.com/-IiH3WfsIgjA/WB_dSG3HGFI/AAAAAAAAL0w/tFW039j2cuY/s0/Shadowverse_2016-11-07_04-47-48.png

Um...nope.

I do not have that option:

http://i.imgur.com/OXsQwkg.png

Doesn't that just generate information about the latest AVS script generated? It would make sense if i don't have that since i haven't generated an AVS script with SVP 4 yet.



-

4 (edited by dlr5668 07-11-2016 02:59:15)

Re: Can SVP 4 generate AVS scripts?

Run video with svp first. Btw check my thread about staxrip if u need good encoding tool. Everything else is garbage.
You can grab script here too:
%appdata%\SVP4\scripts
https://lh3.googleusercontent.com/-kNq48M4-tgw/WB_t_2ytJCI/AAAAAAAAL1A/U1REwJGYx8w/s0/explorer_2016-11-07_05-59-07.png

Re: Can SVP 4 generate AVS scripts?

dlr5668 wrote:

Run video with svp first

I was running a video.

The option is not there...

6 (edited by dlr5668 07-11-2016 03:00:34)

Re: Can SVP 4 generate AVS scripts?

Unknown01 wrote:
dlr5668 wrote:

Run video with svp first

I was running a video.

The option is not there...

I posted another method. I am not sure about avisynth but it should be in same folder.

Re: Can SVP 4 generate AVS scripts?

Unknown01 wrote:

Doesn't that just generate information about the latest AVS script generated? It would make sense if i don't have that since i haven't generated an AVS script with SVP 4 yet.

Nope. Real script like:

# This script was generated by SVP 4 Manager.
# Check https://www.svp-team.com for more details.

import vapoursynth as vs
core = vs.get_core(threads=13)

core.std.LoadPlugin("C:\\Program Files (x86)\\SVP 4\\plugins64\\svpflow1_vs.dll")
core.std.LoadPlugin("C:\\Program Files (x86)\\SVP 4\\plugins64\\svpflow2_vs.dll")

clip = video_in
clip = clip.resize.Bicubic(format=vs.YUV420P8)

crop_string  = ""
resize_string = ""
super_params     = "{pel:1,scale:{up:0},gpu:1,full:false,rc:true}"
analyse_params   = "{block:{w:32},main:{search:{coarse:{distance:-12,bad:{sad:2000}},type:2,distance:-8},levels:3},refine:[{search:{distance:-6}},{search:{distance:-4}}]}"
smoothfps_params = "{gpuid:11,rate:{num:3,den:1},algo:23,mask:{cover:80},scene:{}}"

demo_mode   = 0
stereo_type = 0

########## BEGIN OF base.py ##########
# This file is a part of SmoothVideo Project (SVP) ver.4
# This is NOT the full Vapoursynth script, all used variables are defined via
# JScript code that generates the full script text.

def interpolate(clip):
    input = clip
    if crop_string!='':
        input = eval(crop_string)
    if resize_string!='':
        input = eval(resize_string)

    super   = core.svp1.Super(input,super_params)
    vectors = core.svp1.Analyse(super["clip"],super["data"],input,analyse_params)
    smooth  = core.svp2.SmoothFps(input,super["clip"],super["data"],vectors["clip"],vectors["data"],smoothfps_params,src=clip,fps=container_fps)
    smooth  = core.std.AssumeFPS(smooth,fpsnum=smooth.fps_num,fpsden=smooth.fps_den)

    if demo_mode==1:
        return demo(input,smooth)
    else:
        return smooth

if stereo_type == 1:
    lf = interpolate(core.std.CropRel(clip,0,(int)(clip.width/2),0,0))
    rf = interpolate(core.std.CropRel(clip,(int)(clip.width/2),0,0,0))
    smooth = core.std.StackHorizontal([lf, rf])
elif stereo_type == 2:
    lf = interpolate(core.std.CropRel(clip,0,0,0,(int)(clip.height/2)))
    rf = interpolate(core.std.CropRel(clip,0,0,(int)(clip.height/2),0))
    smooth = core.std.StackVertical([lf, rf])
else:
    smooth =  interpolate(clip)
########### END OF base.py ###########


smooth.set_output()

8 (edited by Unknown01 07-11-2016 03:12:11)

Re: Can SVP 4 generate AVS scripts?

dlr5668 wrote:
Unknown01 wrote:
dlr5668 wrote:

Run video with svp first

I was running a video.

The option is not there...

I posted another method. I am not sure about avisynth but it should be in same folder.

I found some script files generated every time i play a video but cannot use them in the same way than with SVP 3.0, for some reason. I used MEGUI to make 60fps version but the ones generated with 4.0 don't seem to work with it.

I'll check your encoding thread to see if i can make these avs files work.

Thanks for the help...

9 (edited by dlr5668 07-11-2016 03:36:34)

Re: Can SVP 4 generate AVS scripts?

Unknown01 wrote:

Thanks for the help...

You can use VS script encoding even without owning Pro version. Good Luck !