2,051

(4 replies, posted in Using SVP)

which OS and video player?

2,052

(2 replies, posted in Using SVP)

full log could be helpful

it won't work

2,054

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

> может обновимся, под ёлку...

Ну нафиг, у меня отпуск big_smile не терпится - все знают откуда взять...
Тем более что промежуточный билд с HDR и так был.

https://www.svp-team.com/wiki/FAQ#I.27v … fps_videos

2,056

(28 replies, posted in Using SVP)

> does transcoding (SVPcode) will keep HDR metadata from 4k rips?

nope

2,057

(450 replies, posted in Using SVP)

> no audio output

https://www.svp-team.com/forum/viewtopic.php?id=5532

2,058

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

> SVP увидел GPU

правильность работы OpenCL следует проверять через clinfo

> и звук в mpv закончился

https://www.svp-team.com/forum/viewtopic.php?id=5532

2,059

(128 replies, posted in Using SVP)

> Is it working with VLC 4.0 now?

No

2,060

(17 replies, posted in Using SVP)

in this log you just re-encoded 10-bit source as 10-bit, w/o any conversion at all

---
update to the latest SVP rev.182 (it includes dithering in the Vaporsynth script) and put deband filter into lavfi field

2,061

(17 replies, posted in Using SVP)

> Putting "pix_fmt=yuv420p" in ovcopts works

please post the transcoder log here

2,062

(2 replies, posted in Using SVP)

remove trailing '/' in animation profile

it's a text comparison, and the 'full file path' doesn't contain ending slash.

btw, 'cartoons' and 'live action' would be enough (w/o d:/~tv shows~/ part)

2,063

(3 replies, posted in Using SVP)

Yeah, I saw this too on some videos.

> Or is the black bars feature hard-coded and unchangeable?

Unfortunately, yes.

I'll look into this issue, can't tell the exact time frame though cause a holiday season almost started...

к конвертации применяется всё то же что стоит для обычного просмотра
более того, можно рамочкой в риал-тайме обрезать, потом в окне конвертации нажать на кнопочку "перекодировать активное видео"

коммерческий успех gui к youtube-dl весьма неочевиден big_smile
а как ещё один плюсик к целому SVP - вполне себе...

2,066

(4 replies, posted in Using SVP)

> Will there be an issue if I keep both 3.1.7a and 4 Pro installed at the same time

nope, just note the Avisynth version installed
3.1 doesn't work with Avisynth+ and 4 doesn't work with Avisynth 2.5

> Will using CUVID + OpenCL still lock up MPC-HC if I enable both as of the latest build?

I believe it works since... I dunno, long time ago. At least I don't have any problems with both 1070 and 2070.

2,067

(4 replies, posted in Using SVP)

Don't you want to try a 30-days trial first? oO

I'd install libasound2-dev and/or libpulse-dev before building mpv, and check the output after configure step.

2,069

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

а, не, могу... это так почему-то получается если "подсветка" включена. если выключить - то нет.

2,070

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

> Если приостановить работу SVP (из трея или горячими клавишами) то <..> при переходе из/в Full screen mode, SVP запускается

Не знаю, не могу такого повторить.

2,071

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

уже должно работать

2,072

(1 replies, posted in Using SVP)

it must be supported by ffmpeg and/or video drivers installed in your system, not by SVP

2,073

(17 replies, posted in Using SVP)

> pix_fmts

it's a conversion filter, not an encoder option - https://ffmpeg.org/ffmpeg-filters.html#format-1

> This worked, though!
> ovcopts: pix_fmt=yuv420p

how? hmm

[vo/lavc] AVOption 'pix_fmt' not found.


===
1. How SVP works by default:
<10-bit after decoder> --> <10-to-8 Vapoursynth conversion w/o dithering> --> <motion interpolation in 8-bit> --> <8-bit encoder>
"allow 10-bit" OFF

2. Proposed method via lav filters:
<10-bit after decoder> --> <no Vapoursynth conversion> --> <motion interpolation in 10-bit> --> <10-to-8 lavfi conversion> --> <8-bit encoder>
"allow 10-bit" ON, lavfi: ";format=pix_fmts=yuv420p"

3. Other possible solution:
<10-bit after decoder> --> <10-to-8 Vapoursynth conversion with dithering> --> <motion interpolation in 8-bit> --> <8-bit encoder>
"allow 10-bit" OFF, needs editing SVP/script/generate.js, line 397:

res += bl+'input_um = clip.resize.'+(media.is420 ? 'Point':'Bicubic')+'(format=vs.YUV420'+(media.p10?'P10':'P8')+',dither_type="random")'+br;

4. One more...
<10-bit after decoder> --> <10-to-8 Vapoursynth conversion> --> <motion interpolation in 8-bit> --> <lavfi deband filter> --> <8-bit encoder>
"allow 10-bit" OFF, lavfi: ";deband"

5. And more...
<10-bit after decoder> --> <some super-duper Vapoursynth conversion script including deband via f3kdb plugin> --> <motion interpolation in 8-bit> --> <8-bit encoder>

(1) obviously the worst
(2) the best (?) but slowest
(3) better than (1) and worse than (2) in quality, but should be noticeable faster than (2)
(4) probably even better than (2)
(5) have not tried, the best possible quality (in theory) + slowest processing

===
Conclusion: we'll insert "deband" filter in case of 10-to-8 conversion in the next build

2,074

(17 replies, posted in Using SVP)

There're number of options to try.

1. Move 10-to-8-bits conversion to ffmpeg: turn ON "allow 10-bit output" and encode in "advanced mode":
- ovc: libx264
- ovcopts: preset=slow, crf=18, profile=high
- lavfi: ";format=pix_fmts=yuv420p" - w/o quotes, note ';' at the beginning!

2,075

(17 replies, posted in Using SVP)

> Gave it a try on a small sample

could you share that small sample?