CrendKing / avisynth_filter

DirectShow filters that put AviSynth and VapourSynth into video playing
MIT License
107 stars 8 forks source link

1.30 script error #62

Closed ssssssbbb closed 2 years ago

ssssssbbb commented 2 years ago

Environment

Starts playing, it shows script error in both Potplayer and MPC-HC, as the screenshot below, meantime SVP4 shows the video is paused. The video plays at 30fps. 1

CrendKing commented 2 years ago

It's removed, which has been deprecated for over 2 years. Use vapoursynth.core instead.

If this comes from SVP, please let @chainikdn know. In the meantime, just use R54 and v1.2.1, unless there's something specific in new VapourSynth you need.

ssssssbbb commented 2 years ago

Indeed it comes from SVP. I solved it by replacing "get_core()" with "core" and disabling remote control in VPSF.

By the way, is it different from using SVP?

CrendKing commented 2 years ago

What is different from using SVP? Having vs not having SVP remote control VPSF? A script is a script. VPSF doesn't distinguish if it comes from RC or from a static file. The benefit of SVP is that it can dynamically adjust the script according to your setting. If you never need to change during playback, then you can live without RC.

ssssssbbb commented 2 years ago

Understood.