As long as I know its frame accurate seeking, and it also keeps the variable framerate on certain video sources. So it doesnt shift with the audio. Although I still havent managed to make it work.
I have read the documentation but there's not any synthom-solution like of help. So far the code Im struggling with is:
loadplugin("...\AviSynth 2.5\plugins\ffms2.dll")
FFIndex("...\source.mp4", indexmask=7, dumpmask=0, overwrite=true)
FFVideoSource("...\source.mp4",cache=true,seekmode=1,cachefile="test.ffcache")
with no success.
I guess there are other benefits, I would also like to know.
EDIT:
This seems to work Herald.
source="mysource.mp4"
FFIndex(source,cachefile = source + ".ffindex",audiofile = "%si%.%trackzn%.w64",errorhandling=1)
FFVideoSource(source,cache=true,seekmode=1,cachefile="mysource.mp4.ffindex")
I would also like to know the practical benefit of its use and in under what circumstances make use of it.