SVP tray menu - Outer lighting - Disabled
You are not logged in. Please login or register.
SmoothVideo Project → Posts by MAG79
SVP tray menu - Outer lighting - Disabled
Maybe intel graphics used by madVR renderer? If you use MPC-HC then try to switch to EVR Custom with bilinear or bicubic resizer.
MPC-HC menu View - Options... - Output tab
GossipUpdates
Software by your link is not produce any new frames for me. No interpolation.
After conversion 24 fps to 60 fps I've got source frames with repeated frames.
Try to reinstall Avisynth from official installer.
https://sourceforge.net/projects/avisyn … e/download
I've installed the driver and CRU.
Tried @50 Hz and @72 Hz modes on my core i5-5257U. I see artifacts on the screen.
So I need to read instructions by your link. Then I will try again.
Ok. I see.
07:17:31.244 [W]: FFDShow: can't find system-wide installation
Rarely it happens if previous ffdShow installation was incomplete/corrupted.
It is mean, you need to install ffdShow x64 manually. You can get it from ffdshow-tryout project site: ffdshow_rev4533_20140929_clsid_x64.exe
07:19:50.356 [E]: VideoPlayer: failed to determine Avisynth version from C:/Program Files/MPC-HC
Try to delete file avisynth.dll from MPC-HC folder. Maybe it is the permission error to this file?
Tray message: Unable to locate Avisynth, please re-install it
Try to reinstall it manually: Avisynth+ r2294 Installer
Ok. I've compared your file with mine. It is official avisynth+ 0.1 (r2294). It must work.
Try to check if you selected all [DS_64] components in SVP4 while install it. If not then enable them and install.
SVP tray menu - Utilities - Additional programs and features... - Add or remove components - Next - check all [DS_64] components - Next - Update - Restart - Quit
> Media Player Classic - Home Cinema (MPC-HC) 64-bit
You need to:
1. Associate it to all formats: MPC-HC - menu View - Options... - Formats - Run as administrator - enable all (video) formats - OK - OK.
2. Enable internal decoding to all formats: MPC-HC - menu View - Options... - Internal filters - enable all transform filters (right list) - OK.
Please, attach your file avisynth.dll from C:/Program Files/MPC-HC folder.
We need it to reproduce the error.
Проверить настройки плеера:
1. Воспроизведение - Фильтры - LAV Video Decoder, в правом верхнем углу должен быть выбран DXVA2 (copy-back).
2. Вид - Настройки... - Внешние фильтры, выбрать в списке ffdShow raw - справа должно быть выбрано "Предпочесть".
картинки можно глянуть в инструкции: Setting up MPC-HC
Хм. Похоже, что не подхватился ffdShow.
Какой список фильтров при проигрывании m2ts-файлов?
MPC-HC - меню Воспроизведение - Фильтры - Копировать список фильтров в буфер.
Затем вставить сюда.
У меня такой:
Filters currently loaded:
- ReClock Audio Renderer
- madVR
- LAV Audio Decoder (internal)
- ffdshow raw video filter
- LAV Video Decoder (internal)
- LAV Splitter Source (internal)
Как видно, есть ffdShow raw. Именно он нужен SVP, чтобы повысить плавность видео.
tracker35
Если есть опыт написания AVS-скриптов, то за основу можно взять скрипт, описанный в теме Video with variable frame size plays crazy.
SVP заработает, если открывать видео в MPC-HC через пункт меню Файл - Быстро открыть файл - указать файл m2ts из папки BDMV\STREAM.
Вы полуите воспроизведение видео с диска без меню, но зато с плавностью.
hoover1979
Did you try DXVA2 Copy-Back decoder?
Windows 10 - video player hangs and/or crashes
m45t3r
Thank you for explanation.
Good suggestion about --profile parameter to mpv. It is good but partial solution.
But the best way is to fix the real problem.
I will look what we can do in common case. We need to recheck real fps for video with strange framerate and pass real fps instead of wrong value.
SVP needs avisynth or vapoursynth to make 60 fps or more from 24 fps source.
You just need to setup your player.
Looks like part of your videos uses one player with correct setup. And another part of your videos uses another player or another settings.
Just find your player in the table and use instruction by link to setup it.
https://www.svp-team.com/wiki/SVP:Video_players
If it can't help you then give us more information: what player are you using? files details (from mediainfo) which are not worked?
Both videos completed successfully. Thanks so much!
Congratulations!
can GDF4 and 5.0 still work as they've been working all along?
GDFv5 works without crashes on several my videos I tested yesterday.
I didn't compare 5.0 vs 5.1 face-to-face. But I think quality and speed must stay the same.
See svpflow1/2.dll files in folder SVP 4\plugins
TCmullet
Thank you. I will look your script. It can take some time.
But You already can try updated GDFv5.01.
GameDropFix, version 5.01
# GameDropFixV5_01.avsi
# ==================
# release date: 2016-12-20, MAG79
# ____________
# Requrements:
# - avisynth 2.6 MT, http://forum.doom9.org/showthread.php?t=148782
# - masktools2 b1, https://github.com/tp7/masktools
# -- MS VC++ 2012 Redistributable x86, https://www.microsoft.com/en-us/search/ … p;form=dlc
# - mvtools 2.5.11.22, http://avisynth.org.ru/mvtools/mvtools2.html
# - svpflow1 4.0.0.132 from SVP4, https://www.svp-team.com/wiki/Download
# - svpflow2 4.0.0.136 from SVP4, https://www.svp-team.com/wiki/Downloadfunction GameDropFixV5(clip c, bool "myGPU", bool "myDebug", int "myErrSize", bool "DblFPS")
{
myGPU = default( myGPU, true )
myDebug = default( myDebug, false )
myErrSize = default( myErrSize, 12 )
dblFPS = default( dblFPS, false )
New in this version 5.01:
- updated to last versions of plugins: MVTools 2.5.11.22, SVPFlow1.dll 4.0.0.132, SVPFlow2 4.0.0.136;
- no script code changes.
Usage:
- to fix dropped frames with GPU:
GameDropFixV5()
- to fix dropped frames with GPU and double framerate by insert interpolated frames:
GameDropFixV5(DblFPS=true)
- to fix dropped frames with debug info:
GameDropFixV5(myDebug=true)
Sample script:
SetMTMode(3,4)
DirectShowSource("video.mp4")
SetMTMode(2)
GameDropFixV5()
Distributor()
Download:
- GameDropFixV5_01_avsi.zip - only avsi-file
- GameDropFixV5_01_pluginsBundle.zip - whole plugins folder: avsi-file + masktools + mvtools + svpflow
It's ok. I see. Of course dlls from SVP4 would be better.
I've read all your posts. The error in SVPFlow2.dll 2.0.3.0 is the same: Access violation in AvisynthPluginInit2.
Did you try SVPFlow1/2.dll from SVP4?
Your suggestions about video framesaize can be possible cause. It needs to be checked.
To make me help you: can you post your avs-script here?
If GDF4/5 are already work with Avisynth 2.6 then it is good!
I mean, it need to be updated to work with Avisynth 2.6 and with last versions of used Avisynth plugins.
Every time when SVP 3 starts it shows LAST error log. With notepad.
But these are errors happened in previous interval of SVP work. See times in the log.
I need to know what happened at PC when error occurs. Just in the same time.
When the error occurs?
Happened once and not repeated?
Subtitles from your link are works to me in 2 players: mpv player and MPC-BE.
Not working in MPC-HC.
To see subtitles I choose player from menu: SVPtube - Video player - mpv player.
And before click play I select American English
SmoothVideo Project → Posts by MAG79
Powered by PunBB, supported by Informer Technologies, Inc.