Preferences - Filter control - Built-in video processing filter settings - Condition = Disable

Хотя в PotPlayer-е LAV и не особо нужен, у него встроенные фильтры хорошие.

см. на почте

3,903

(4 replies, posted in Using SVP)

> Do you think it could of been my ssd?

Nope, it was some configuration option incorrectly set.

3,904

(395 replies, posted in Эксплуатация SVP)

> железо оптимальной стоимости

кому и кобыла невеста (с)

3,905

(3 replies, posted in Эксплуатация SVP)

по-умолчанию
оно же "автоматический выбор"

3,906

(4 replies, posted in Using SVP)

probably the "resize to screen" option is turned on?

BTW, anyone interested in macOS build?

3,908

(6 replies, posted in Using SVP)

it's just one google search away - https://github.com/Argon-/mpv-stats

3,909

(11 replies, posted in Using SVP)

double check that you set PYTHONPATH env variable

see the last advise on that page

3,910

(11 replies, posted in Using SVP)

what's in VLC log? (run VLC, open Messages window - Ctrl+M, then open a video and turn on deinterlacing)

3,911

(11 replies, posted in Using SVP)

>> I run vlc as admin always

> so how to fix that?

DO NOT run VLC as admin

3,912

(11 replies, posted in Using SVP)

> I run vlc as admin always

why? it won't work this way

https://www.svp-team.com/wiki/FAQ#Admin … eges_issue

works for me with all the built-in decoders

3,914

(7 replies, posted in Using SVP)

http://www.svp-team.com/forum/viewtopic.php?id=3733

3,915

(6 replies, posted in Using SVP)

You need this

3,916

(7 replies, posted in Using SVP)

> Is there any manual or guide which tells, what each of those 10 options do?

not yet, work in progress...
still there're a lot of topics here on forums

mpc-add.wsf:

<job id="svptube">
<script language="JScript">

var videoPlayerPath="c:\\Program Files\\mpc-hc\\mpc-hc64.exe";

var shell=WScript.CreateObject("WScript.Shell");

var videoURL,audioURL,subsURL;
switch(WScript.Arguments.length)
{
case 4: subsURL =WScript.Arguments(2);
case 3: audioURL=WScript.Arguments(1);
case 2: videoURL=WScript.Arguments(0);
}

cmd = "\""+videoPlayerPath+"\" \""+videoURL+"\"" + " /add";
if(audioURL) cmd += " /dub \""+audioURL+"\"";
if(subsURL) cmd += " /sub \""+subsURL+"\"";    

shell.Run(cmd,1,false);

</script>
</job>

tube.player.user = "d:\mpc-add.wsf"

3,918

(7 replies, posted in Using SVP)

> If I unlock the advanced SVP by buying it, will I see good changes in quality & more smoother animation?

you'll get manual control over 10+ parameters that will affect the quality, but if you're not familiar with them you probably won't get better results than with predefined values

ok, I found the error
actually "/" character in "/add" breaks one place in svptube and it just doesn't pass /dub arg to the player

right now you can point tube.player.user to a custom .wsf script and make the correct command line for mpc-hc on your own

why you think "/add" should be at the end?

considering ""C:\Program Files (x86)\MPC-HC\mpc-hc.exe" "%1" /add" in the tube.player.user, SVPtube produces this command line:

"C:\Program Files (x86)\MPC-HC\mpc-hc.exe" <video-url> /add /dub <audio-url>
which adds <video-url> to the playlist BUT obviously ignores <audio-url>

"C:\Program Files (x86)\MPC-HC\mpc-hc.exe" "%1" /add

mpc-hc adds video stream to the playlist but just ignores /dub url

mpc-hc.exe <video-url> /dub <audio-url> /sub <sub-url>

probably this isn't working together with /add switch

> LAV рендера

нет такого

А если так?

тут как бы речь о ntdll.dll и kernel32.dll
если их обновила "какая-то программа", то это не очень хорошо big_smile

может "sfc /scannow" попробовать запустить, вдруг чего найдет hmm