1

(2 replies, posted in Using SVP)

Woah, you are right! Did in fact not know that. So it's actually the other way around then I gues? NVENC AVI should not be listed in advanced view?

2

(6 replies, posted in Using SVP)

Same problem here (4.6.0.263). The link is detected, I can choose a profile from the list but the download itself doesn't work.

3

(2 replies, posted in Using SVP)

Version:  4.6.0.263
OS: Win10x64 22H2
GPU: Nvidia RTX 3060

Hi there,

I can select the AV1 hardware endoder only via the Advanced view:

https://i.imgur.com/auIl90s.png

In the Basic view it is just not visible for some reason:

https://i.imgur.com/pMvnjOO.png

Is this a bug? Thank you smile

Hi there,

just a quick note: SVP doesn't seem to delete it's temporary files after transcoding has been done. After it finished, there is still a file with format <original name>.SVP.temporary.mkv in the folder (with has multiple hundreds MB).

Thank you,
spyro

5

(5 replies, posted in Using SVP)

Hi again,

thanks for all your time for helping to track this issue down. smile
My decoder is ffdshow (it's the only decoder installed along with the SVP package).

I played around with the script some more and was able to run in successfully when I replaced

DirectShowSource("D:\Videos\svp\KZSF_TDM.mov", fps=29.97, convertfps=true, pixel_type="YV12")

with

DirectShowSource("D:\Videos\svp\KZSF_TDM.mov", fps=29.97, convertfps=true).convertToYV12()

So it seems the problem was, that AVS threads the video stream (wrongly) as YV12, because this attribute was hardcoded. Every "convertToYV12()" further in the script was ignored then.

Just don't get why that's only an issue with VirtualDub...

spyro

BTW: Your software is the best thing since the invention of sugar-free softdrinks smile

6

(5 replies, posted in Using SVP)

Thank you. smile

In case you need it for analysis, here the original video source: https://mega.co.nz/#!tZZQ2bjQ!BB0R9UEyx … YJCqyu5pHQ (should be no copyright issue)

spyro

7

(5 replies, posted in Using SVP)

https://dl.dropboxusercontent.com/u/24358204/vd_error.PNG

Here's the generated script:

# This script was generated by SmoothVideo Project (SVP) Manager.
# Check http://www.svp-team.com for more details.

SetMemoryMax(1024)

global svp_scheduler=true
global threads=8
global svp_cache_fwd=threads+2

LoadPlugin("C:\Program Files (x86)\SVP\plugins\svpflow1.dll")
LoadPlugin("C:\Program Files (x86)\SVP\plugins\svpflow2.dll")

SetMTMode(3,threads)
DirectShowSource("D:\Videos\svp\KZSF_TDM.mov", fps=29.97, convertfps=true, pixel_type="YV12")
SetMTMode(2)

global crop_params=""
global resize_string=""
global super_params="{scale:{up:0},gpu:1,rc:false}"
global analyse_params="{block:{overlap:1},main:{search:{coarse:{distance:-10}}}}"
global smoothfps_params="{rate:{num:2,den:1},algo:13,scene:{blend:true,mode:0}}"

global demo_mode=0
stereo_type=0
stereo_left_selection=""
stereo_right_selection=""

########## BEGIN OF MSMoothFps.avs ##########
# This file is a part of SmoothVideo Project (SVP) 3.1.4
# This is NOT the full AVS script, all used variables are defined via
# JavaScript code that generates the full script text.

function interpolate(clip src)
{
    input = crop_params=="" ? src : eval("src.crop("+crop_params+")")
    input = resize_string=="" ? input : eval("input."+resize_string)
   
    super=SVSuper(input, super_params)
    vectors=SVAnalyse(super, analyse_params, src=input)
    smooth=SVSmoothFps(input, super, vectors, smoothfps_params, mt=threads, url="www.svp-team.com")

    return demo_mode==0 ? smooth : demo(input,smooth)
}

input=last

    stereo_type==0 ? eval(""" interpolate(input)
""") :     stereo_type==1 || stereo_type==3 ? eval("""
        lf = interpolate(input.crop(0,0,input.width/2,0))"""+stereo_left_selection+"""
        rf = interpolate(input.crop(input.width/2,0,0,0))"""+stereo_right_selection+"""
        StackHorizontal(lf, rf)
""") :     stereo_type==2 || stereo_type==4  ? Eval("""
        lf = interpolate(input.crop(0,0,0,input.height/2))"""+stereo_left_selection+"""
        rf = interpolate(input.crop(0,input.height/2,0,0))"""+stereo_right_selection+"""
        StackVertical(lf, rf)""") : input

########### END OF MSMoothFps.avs ###########


Even if append ".convertToYV12()" to "DirectShowSource(...)" - it still makes no difference. The clip runs absolutely smooth in MPC-HD. I've also deactivated SVP while trying to open the AVS in VirtualDub...

spyro

8

(6 replies, posted in Using SVP)

Thank you, that helped! But I have to start SVP with admin rights now (if not, it will crash again). I guess, I just wait for the new version. Looking forward. smile

9

(6 replies, posted in Using SVP)

Hi,

sorry, that didn't help (folder ist completely empty now). I'm getting the same error (same adress also).

spyro

10

(6 replies, posted in Using SVP)

Hi,

sorry for my late response. Here's the ZIP-File you needed: https://dl.dropbox.com/u/24358204/SVP%203.1.zip (I couldn't find the upload function.)

spyro

11

(6 replies, posted in Using SVP)

Hi there,

love your tool but the new version (30/12/2012) gives me a instant crash right after starting it (no video opened):

Exception EAccessViolation in module SVPMgr.exe at 00009A26.
Access violation at address 00409A26 in module 'SVPMgr.exe'. Read of address 00000018.

https://dl.dropbox.com/u/24358204/svp_crash.png

My System:
- AMD Phenom II 920
- Win7x64
- Nvidia GeForce 560 Ti, driver version 310.70

spyro