Log in

View Full Version : Why is Avisynth creating a new index file when i open the script?


nel-son
4th August 2021, 16:04
When i create an index file using "ffmsindex.exe" and open the media file with a avs-script, avisynth is creating a new file. This is annoying when i have multiple large files.

The script is simple

v = FFVideoSource("video.mkv", threads=1)
a = FFAudioSource("video.mkv")
AudioDub(v,a)

the index and the dll are 32 bit and from the same zip file (same ffms2 version). I check the index file with 'md5sum'.

StainlessS
4th August 2021, 16:12
Dont know if this will help:- http://avisynth.nl/index.php/FFmpegSource
See Limitations, and FFmpegSource2 cache arg.

nel-son
4th August 2021, 17:31
Got it. Problem was that default for audio indexing is 'none'. my script opens an audio stream so the audio indexing was the problem.

StainlessS
4th August 2021, 17:33
Sweet.