diff --git a/FFmpegSource2/ffmpegsource2.html b/FFmpegSource2/ffmpegsource2.html index 7d06152fe..4e53ea092 100644 --- a/FFmpegSource2/ffmpegsource2.html +++ b/FFmpegSource2/ffmpegsource2.html @@ -29,7 +29,7 @@ Opens files using ffmpeg and nothing else. May be frame accurate on good days. T

Usage

-FFIndex("string source, string cachefile = source + ".ffindex", int trackmask = 0, string audiofile = source, bool overwrite = false)
+FFIndex("string source, string cachefile = source + ".ffindex", int indexmask = 0, int dumpmask = 0, string audiofile = source, bool overwrite = false)
Used to invoke indexing separately and to write audio tracks to disk as wave64 files

@@ -54,8 +54,8 @@ Opens files using ffmpeg and nothing else. May be frame accurate on good days. T

-trackmask: - Which audio tracks to write to disk. It is a binary mask meaning that 7 corresponds to writing tracks 1-3. Non-audio tracks are ignored. -1 writes all tracks. +indexmask & dumpmask: + Which audio tracks to index/write to disk. Dumping a track also implies indexing since the same work has to be done anyway. It is a binary mask meaning that 7 corresponds to writing tracks 1-3. Non-audio tracks are ignored. -1 writes all tracks.

@@ -186,6 +186,14 @@ Note that --enable-w32threads is required for multithreaded decoding to work.

Changes