Log in

View Full Version : Ffsar_num


Logan9778
29th September 2023, 08:18
Hey guys. Haven't posted here in a while, and I was trying to do some encoding.

This is my Avisynth+ script (64 bit), and it keeps telling me "I don't know what FFSAR_NUM means." Also, a number of other variable that are beneath that error printout. Any ideas? I just updated all of my scripts and avisynth+ itself.

LoadPlugin("C:\Users\Morph\AviSynthPlus-Plugins-Scripts\plugins64+\ffms2.dll")
Import("C:\Users\Morph\AviSynthPlus-Plugins-Scripts\plugins64+\ffms2_.avsi")
FFVideoSource("f:\DVD's\Suspicion.mkv")
crop(0,132,0,-132)
ffInfo()
Prefetch(8)

Video plays ok in AVSPmod, I just get all these errors from ffinfo().

Even stranger, moving through frame by frame with my mouse wheel, it actually works in a few spots with no errors, but then errors on the next frames.
I can get Version, Frame Number, Picture Type, CFR Time, VFR Time, but with errors on the screen. Other frames, I get the same without errors, and then others I get that plus all the rest of the ffinfo() data with no errors.

If I let the movie play in AVSPmod, I get the version, frame number, picture type, cfr time, vfr time with the errors on the screen constantly.

This has me stumped.

Also, FFinfo() seems to drive my CPU up to 100%.

kedautinh12
29th September 2023, 10:00
Are you using ffms2 latest ver
https://forum.doom9.org/showthread.php?p=1991852#post1991852

Logan9778
29th September 2023, 20:32
Thanks! I'll try that.

EDIT: No, unfortunately, that didn't work.

StvG
30th September 2023, 06:30
Remove the last line (Prefetch(8)).

Logan9778
1st October 2023, 08:25
Thanks. Still doesn't work. Using latest version of FFMS2.dll and FFMS2.avsi. FFInfo() also causes my CPU to power up to 100%. Very slow. Seems something is wrong with it. Now running DGSource with options show=True,show2="2,2," , and it works fine.
Also, LWLInfo.avsi works as well.

It's something in FFMS2.

StvG
1st October 2023, 20:13
The following code works fine for me:

FFVideoSource(...)
crop(0,132,0,-132)
ffInfo()

Logan9778
3rd October 2023, 09:13
Yeah, It's got to be something with my old computer. I'll just stick with DGSource for now.