diff --git a/index.html b/index.html
index 8b6e52c..0fdc832 100644
--- a/index.html
+++ b/index.html
@@ -1097,12 +1097,12 @@
ffmpegstarts the command
-f concatforces ffmpeg to concatenate the files and to keep the same file format
-i mylist.txtpath, name and extension of the input file. Per the FFmpeg documentation, it is preferable to specify relative rather than absolute file paths, as allowing absolute file paths may pose a security risk.
- This text file contains the list of files to be concatenated and should be formatted as follows:
+ This text file contains the list of files (without their absolute path) to be concatenated and should be formatted as follows:
- file './first_file.ext'
- file './second_file.ext'
+ file 'first_file.ext'
+ file 'second_file.ext'
. . .
- file './last_file.ext'
+ file 'last_file.ext'
In the above, file is simply the word "file". Straight apostrophes ('like this') rather than curved quotation marks (‘like this’) must be used to enclose the file paths.
Note: If specifying absolute file paths in the .txt file, add -safe 0
before the input file.