Thread: Avisynth+
View Single Post
Old 12th February 2017, 10:54   #3015  |  Link
vinnytx
Registered User
 
Join Date: Jan 2012
Posts: 46
I have problems with Avisynth+ latest versions and Potplayer.
I use this script to resize my videos while playing
Code:
SetMemoryMax(512)
SetFilterMTMode("DEFAULT_MT_MODE", 2)
ffdshow_source()
dispWidth = 1920
dispHeight = 1080
mWidth = float(last.width)
mHeight = float(last.height)
ratio = (mWidth/mHeight)
newHeight= round((dispWidth/ratio)/2)*2
newHeight > dispHeight ? Eval("""
newHeight=dispHeight
newWidth=round((newHeight*ratio)/2)*2
""") : Eval("""
newWidth=dispWidth
""")
spline64resize(newWidth,newHeight)
Prefetch(4)
Videos are "flashing" at the first seconds of reproduction, then they are showed correctly
Here an example. https://www.mediafire.com/?4t75s2m74wuvzj3
The only Avisynth+ version that works well is r1779



Another problem with Potplayer is that I can't hear audio unless I remove TimeStretch.dll plugin.
It appears this error message




Also, I had to remove ImageSeq.dll plugin because I had many Potplayer crashes with it
vinnytx is offline