Там скорее всего 23.97 мне такие рипы и не только аниме попадались. В mpv можно зафорсить частоту источника (fps=23.978)

I agree. using 72/96/120/144 Hz monitor is the BEST artifact reducing setting you can possible have. One of my monitors wont overclock to 72 Hz so I use 71 Hz + reclock. Harder to set up but almost same effect.

You may try this build https://my.pcloud.com/publink/show?code … 8enzU09p2y
Its auto build every 10 days on my PC.

input-ipc-server=mpvpipe
vo=opengl-hq:backend=dxinterop:scale=ewa_lanczossharp:cscale=ewa_lanczossoft:interpolation:tscale=mitchell:tscale-clamp:temporal-dither
video-sync=display-resample
video-sync-max-video-change=10
hwdec=d3d11va-copy
slang=enUS,en,eng,ptBR,pt
alang=jp,jpn,enUS,en,eng,ptBR,pt
save-position-on-quit=yes
autosync=10
script-opts=autospeed-nircmd=true,autospeed-speed=false,autospeed-nircmdc="C:\Users\vadash\AppData\Roaming\mpv\nircmdc.exe",autospeed-rates="50,60,71",autospeed-osd=true
log-file="C:\tmp\mpv.log"
fps=23.978

fps=23.978 for shitty anime releases  that get detected as 23.8
I use dxinterop, my bro angle

sprayer wrote:

спс, жаль потплеер не поддерживает, другие плееры не хочется ставить

вроде и потплеер работает, забыл про него (через вапор)

sprayer wrote:

да кажется такое наблюдается не в каждом видео. А чем про версия поможет?

там есть другой "движок" вапорсинк, правда он работает только с mpv, plex (платный) и vlc (бета).

Вот как у меня настроено:
Я добавляю интересные фильмы и шоу через веб интерфейс на https://trakt.tv/dashboard -> flexget качает их с торента в момент релиза -> все каталогизируется через Kodi -> который уже открывает плеер mpv

авс64 - дырявое ведро. Но утечки памяти наблюдаются не у всех. Либо переходи на х86, либо покупай про, либо ставь линух.

lionessb wrote:

как в нем использовать авс скрипты ?

там вставляешь как на скриншоте в script editor

lionessb wrote:

dlr5668
да да... совсем прям в 2 клика,

Я имел ввиду что после того как настроишь, конвертить в 2 клика

lionessb wrote:

а мож в медиакодере прокатит ? он вроде авс скрипты хавает...

http://www.svp-team.com/forum/viewtopic.php?id=3243
тут можно в 2 клика настроить, удобнее некуда.

Bs player in 2016 big_smile
Почему бы не пробовать через Вапорсинк конвертировать ? Гайд тут есть
ты же бета тестер, скачай бесплатный ПРО и смотри в mpv/vlc.

611

(8 replies, posted in Using SVP)

Unknown01 wrote:

Thanks for the help...

You can use VS script encoding even without owning Pro version. Good Luck !

612

(8 replies, posted in Using SVP)

Unknown01 wrote:

Doesn't that just generate information about the latest AVS script generated? It would make sense if i don't have that since i haven't generated an AVS script with SVP 4 yet.

Nope. Real script like:

# This script was generated by SVP 4 Manager.
# Check https://www.svp-team.com for more details.

import vapoursynth as vs
core = vs.get_core(threads=13)

core.std.LoadPlugin("C:\\Program Files (x86)\\SVP 4\\plugins64\\svpflow1_vs.dll")
core.std.LoadPlugin("C:\\Program Files (x86)\\SVP 4\\plugins64\\svpflow2_vs.dll")

clip = video_in
clip = clip.resize.Bicubic(format=vs.YUV420P8)

crop_string  = ""
resize_string = ""
super_params     = "{pel:1,scale:{up:0},gpu:1,full:false,rc:true}"
analyse_params   = "{block:{w:32},main:{search:{coarse:{distance:-12,bad:{sad:2000}},type:2,distance:-8},levels:3},refine:[{search:{distance:-6}},{search:{distance:-4}}]}"
smoothfps_params = "{gpuid:11,rate:{num:3,den:1},algo:23,mask:{cover:80},scene:{}}"

demo_mode   = 0
stereo_type = 0

########## BEGIN OF base.py ##########
# This file is a part of SmoothVideo Project (SVP) ver.4
# This is NOT the full Vapoursynth script, all used variables are defined via
# JScript code that generates the full script text.

def interpolate(clip):
    input = clip
    if crop_string!='':
        input = eval(crop_string)
    if resize_string!='':
        input = eval(resize_string)

    super   = core.svp1.Super(input,super_params)
    vectors = core.svp1.Analyse(super["clip"],super["data"],input,analyse_params)
    smooth  = core.svp2.SmoothFps(input,super["clip"],super["data"],vectors["clip"],vectors["data"],smoothfps_params,src=clip,fps=container_fps)
    smooth  = core.std.AssumeFPS(smooth,fpsnum=smooth.fps_num,fpsden=smooth.fps_den)

    if demo_mode==1:
        return demo(input,smooth)
    else:
        return smooth

if stereo_type == 1:
    lf = interpolate(core.std.CropRel(clip,0,(int)(clip.width/2),0,0))
    rf = interpolate(core.std.CropRel(clip,(int)(clip.width/2),0,0,0))
    smooth = core.std.StackHorizontal([lf, rf])
elif stereo_type == 2:
    lf = interpolate(core.std.CropRel(clip,0,0,0,(int)(clip.height/2)))
    rf = interpolate(core.std.CropRel(clip,0,0,(int)(clip.height/2),0))
    smooth = core.std.StackVertical([lf, rf])
else:
    smooth =  interpolate(clip)
########### END OF base.py ###########


smooth.set_output()

613

(8 replies, posted in Using SVP)

Unknown01 wrote:
dlr5668 wrote:

Run video with svp first

I was running a video.

The option is not there...

I posted another method. I am not sure about avisynth but it should be in same folder.

614

(8 replies, posted in Using SVP)

Run video with svp first. Btw check my thread about staxrip if u need good encoding tool. Everything else is garbage.
You can grab script here too:
%appdata%\SVP4\scripts
https://lh3.googleusercontent.com/-kNq48M4-tgw/WB_t_2ytJCI/AAAAAAAAL1A/U1REwJGYx8w/s0/explorer_2016-11-07_05-59-07.png

615

(8 replies, posted in Using SVP)

Sure
https://lh3.googleusercontent.com/-IiH3WfsIgjA/WB_dSG3HGFI/AAAAAAAAL0w/tFW039j2cuY/s0/Shadowverse_2016-11-07_04-47-48.png

you dont need higher rates than your monitor can support

Set monitor refresh rate to 86hz and use to screen.
I can see 25, 24, 50, 72, 75, 60, 96, 120, 144 be usefull but 86 lol

https://lh3.googleusercontent.com/-U4XFg1VN8-M/WByDSfpIUsI/AAAAAAAALxo/1H1LyJcWF5Y/s0/chrome_2016-11-04_15-47-01.png

Sorry its garbage perfomance wise. Even for 1080p u have to use lowest settings possible.
Repeat Utilities -> System perfomance test and use

https://lh3.googleusercontent.com/-_qhNv5kBhPw/WByD4CeFIYI/AAAAAAAALxs/d6oAV3nLdSE/s0/SVPManager_2016-11-04_15-49-33.png

Deadsix27 wrote:

Works fine with my custom build. All good now. I'm slightly happy. altho I will miss a proper UI when mpc support will die.

btw new mpv UI is pretty neat. I use Kodi on top of it to manage my media files.

https://lh3.googleusercontent.com/-2IR4W-WGjIc/WBvonEeM77I/AAAAAAAALxA/Z-QeLgz452o/s0/mpv_2016-11-04_04-47-02.jpg

mpv can do reclock like scaling too <3

Ну уже все обсудили, можно ныть что бсодить, а можно проверить пару советов выше.
Еще раз - вытащи все плашки ОЗУ кроме 1, переставь в 4й слот и протри спиртом контакты.

622

(10 replies, posted in Using SVP)

trandoanhung1991 wrote:

What I'm trying to do is to interpolate from 60FPS to 144FPS.

use only integral multipliers (60 x 2 -> 120, 24 x 5 -> 120, 24 x 6 -> 144).
144/60 = garbage video big_smile
MPC-HC, mpv, Kodi can auto switch monitor refresh rate.

623

(3 replies, posted in Using SVP)

svp 3 big_smile

есть же staxrip. Один раз вставил скрипт и все готово.

625

(45 replies, posted in Using SVP)

Rowk wrote:

That's probably the reason, why it's not possible to play a 24fps movie in 60fps, without seeing some flaws here and there.

most ppl here watch 24fps content in 48/72/96/120 Hz and dont have that much problem with artifacts