3,776

(8 replies, posted in Using SVP)

The Greenlight is closed.
And even if SVP will be accepted as a "video production content-creation software from select developer", I really doubt it will be easy to distribute all those "avisynth", "ffdshow", "python" and "vapoursynth" packages via Steam hmm

3,777

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

не ссылку удалили, а русскоязычную версию страницы Download
на английской всё есть

3,778

(9 replies, posted in Using SVP)

> but I don't know how much of the code is shared between the Windows version.

100% wink

На всякий случай напоминаю, что вопросы разработчику madVR следует задавать вон там.
Хотя я примерно догадываюсь куда он отправит с проблемами HD6700 на XP big_smile

3,780

(9 replies, posted in Using SVP)

vaapi? it's for Linux only

basically you now have hw decoder turned off

> самую стабильную ОС всех времён

NT 4 заруливает это кривое поделие со свистоперделками в минуса!

> почти как гомофобы

"гомофобия" в даном случае это скорее про "боязнь 10-ки" big_smile

3,782

(9 replies, posted in Using SVP)

Open source =/= free. Paid, copyrighted products with public source code does exist.

they only exist because of the paid online subscription (Plex) / support, or it requires some hardware to work with (Lightpack), or the software is used on a corporate market (Ubuntu)

Значит в след. релизе будет исправление.
Хотя почему это проявляется именно на конкретной машине так и непонятно hmm

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

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

см. на почте

3,786

(4 replies, posted in Using SVP)

> Do you think it could of been my ssd?

Nope, it was some configuration option incorrectly set.

3,787

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

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

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

3,788

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

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

3,789

(4 replies, posted in Using SVP)

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

BTW, anyone interested in macOS build?

3,791

(6 replies, posted in Using SVP)

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

3,792

(11 replies, posted in Using SVP)

double check that you set PYTHONPATH env variable

see the last advise on that page

3,793

(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,794

(11 replies, posted in Using SVP)

>> I run vlc as admin always

> so how to fix that?

DO NOT run VLC as admin

3,795

(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,797

(7 replies, posted in Using SVP)

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

3,798

(6 replies, posted in Using SVP)

You need this

3,799

(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"