Maphuse
Did advise dlr5668 help you?
If not then show SVP Index and CPU load graphs.

galeopsis
Скорее всего это проблема мультимониторных систем. DirectShow так устроен, что беспроблемно (т.е. без остановок и подергиваний) работает только основной монитор. Поэтому если сделать ТВ основным монитором, это должно помочь.
А еще надежнее, сделать ТВ единственным моитором в системе, хотя бы на время просмотра видео.
Для этого рекомендую использовать горячие кнопки Win-P и выбрать только один монитор.

Попробуйте. Думаю, поможет.

rix23
DXVA native должен заработать, если исключить ffdShow из цепочки фильтров.
P.S. Картинка графиков и правда необычная.

rix23
Какой программой загрузка измерялась? Может она не умеет сэтим чипом работать, тогда взять другую, обновить до последней версии.
Ускорение должно работать при выборе DXVA native  и DXVA copy back. Остальные варианты (CUVID/Quicksync) не для этого чипа.

Frankyboy5
If you need to stop loading external audio - just move *.FLAC to separate folder.

If you need to stop playing of one audio stream use built-in audio switcher. It works perfect for me.

1,131

(3 replies, posted in Using SVP)

SVP detects current monitor with video. You can open video in player, then open log and look: Information - Events log.
But it is no way to select profile by monitor refresh rate.
We have only one universal smooth setting "To screen". It is enough for me.
As I can see you need more. Why?

Smoothing must be identical. Because interpolation of frames is work of SVP. Player just show these frames.
Difference can be in memory use and CPU load. It need to be compare.
You can start from topics:
VLC player support [BETA]
VLC (beta) | Howto: Enable | followed wiki, then get "engine error"
[TESTING] Daum PotPlayer: direct Avisynth and Vapoursynth interface

Two ways:
1. SVP + mpv (or VLC) works without ffdShow (it uses vapoursynth)
2. SVP + PotPlayer works without ffdShow (it uses avisynth embedded)

А тот второй MPC-HC какой версии?

You need to enable HEVC in LAV builtin to MPC-HC. Go to MPC-HC View menu - Options - Internal Filters - enable HEVC (pic 1) - Video decoder- enable HEVC HW acceleration (pic 2).

1,136

(10 replies, posted in Using SVP)

trandoanhung1991
What if you select output 8bit YV12 only in LAV?

Спасибо, понаблюдаю наличие этих микрорывков без теста и с тестом. Но то, что помогает перезапуск - тоже проверю.

Nintendo Maniac 64
Good cool

Images above replaced to normal scaled ones. wink

Скачок наблюдается на 8-м кадре. Это значит, что при выводе 7-го кадра он отличается от 6-го на прогнозируемую величину, а вот 8-ой кадр от 7-го отличается сильнее, чем ожидалось. Т.е. скачок. Я вкладывал именно этот смысл. Посмотрите архив panoram_move.zip, приложенный к сообщению. Нумерация кадров начинается с 0. Может в этом причина разного понимания записи 8j? wink

Таблица Excel готова наполовину. Как доделаю - выложу.

1,140

(15 replies, posted in Using SVP)

Moavre wrote:

Should I try to delete the entire paste?

Yes. Just delete SVP folder from Program Files (x86). And install it again. It must help.

I checked. On my system SVP uninstalled completely. SVP folder is empty after that.
So, I can't repeat the issue of incompletely SVP uninstallation.

Bars
Для бОльшего количества кадров надо как-то автоматизировать создание файла delta.txt. Например, можно использовать MS Excel. Плюс надо еще подумать как разруливать места двойных дропов, где пересекаются 25-ти и 24-ех кадровые шаблоны.
Если самостоятельно не получится разобраться, то помогу с файлом.

Насчет прыжка. Он не между 8-ым и 9-ым, а между 7-ым и 8-ым. Вот приготовил анимацию, схематически показывающую смещение кадров обратно к их правильному положению. Может так станет понятней?

Nintendo Maniac 64 wrote:

Presumably there's no way to use a lighter-weight algorithm, correct?

You can "override" default SVP downscaling algorithm BicubicResize by ffdShow's Fast Resize. I got economy by 2% CPU load. Try it smile

1,143

(15 replies, posted in Using SVP)

Moavre
Reinstalling SVP is completely safe operation to your license.
Did you successfully complete reinstall operation or it still stays uncompleted?

Анимация (уменьшенный предпросмотр) результата.
В верхнем левом углу значение переменной delta.
В нижнем правом - метка интерполированных кадров (fix50 / -fix50).

Теперь нужно составить файл команд, куда сдвигать кадры в соответствии с их номерами.


Это иной подход, зато номера кадров не "съезжают" из-за поэтапного применения функции вырезания дублей.

В данном случае файл такой:

delta.txt wrote:

Type int
Default 0

R 3 6 100
7 50
13 -50
R 14 21 -100
R 27 31 100
32 50
37 -50
R 38 46 -100
R 51 52 100

читается так: для кадров 3 - 6 берем кадр из будущего (смещение +100)
для кадра 7 - берем кадр со смещением +50, т.е. интерполяцией между текущим и следующим.
и так далее. Формат файла см. там: ConditionalReader

Ну и сам скрипт с применением функции ConditionalReader.

ImageSource("img%02d.jpg", start=00, end=52)
ConvertToYV12()

myGPU = true
myErrSize = 20
super_params = (myGPU==true) ? "{gpu:1}" : "{gpu:0}"
analyse_params="{main:{search:{coarse:{distance:4,bad:{sad:2000}},type:2,distance:4},penalty:{lambda:1,pglobal:10000}},refine:[{thsad:65000}]}"
smoothfps_params="{rate:{num:2,den:1},algo:13,scene:{blend:true}}"

super=SVSuper(super_params)
vectors=SVAnalyse(super, analyse_params)
fix_all = SVSmoothFps(super, vectors, smoothfps_params, mt=GetMTMode(true), url="www.svp-team.com")

global fix50 = fix_all.SelectEvery(2,1).Subtitle("fix50", align=3, size=myErrSize)
global fix50n = fix_all.SelectEvery(2,1).Subtitle("-fix50", align=3, size=myErrSize)

ScriptClip("ReplaceFrames(last,delta)")
ScriptClip("Subtitle(String(delta))")
ConditionalReader("delta.txt", "delta", false)

function ReplaceFrames(clip input, int delta)
{
    (delta==-100) ? input.trim(1,1)+input : \
    (delta==-50) ? fix50n.trim(1,1)+fix50n : \
    (delta==50) ? fix50 : \
    (delta==100) ? input.trim(1,0) : \
    input
    return last
}

Результат приложил. Это 52 кадра в архиве.

It is possible to have slightly stuttering after seeking with SVP about 1-2 seconds long just after rewind. Do you see stutter for a longer time?

1,147

(15 replies, posted in Using SVP)

I see. Then you can reinstall SVP: uninstall and install it again.

appears every second picture from another time , For a few seconds

It is the bug. It must not be so. Check the option Reset on seek. It must be soft reset or hard reset. See in SVP tray menu - Application settings - Additional options.
Then try to change renderer or change its settings. If it is not help then update your AMD graphics driver.

1,149

(15 replies, posted in Using SVP)

Moavre
N/A is some cases mean very low value of SVP index.
Does your video plays at normal speed or significantly slower than audio track?

1,150

(9 replies, posted in Using SVP)

Oh. I see. I confirm the issue too.
OS X 10.11.6 gives me the same results. Response time up to 100 ms every 10 seconds.