diff --git a/index.html b/index.html index 9584cd7..c0a08d1 100644 --- a/index.html +++ b/index.html @@ -567,7 +567,7 @@
ffmpeg -f lavfi -i mandelbrot -t 10 output_file
ffmpeg -f lavfi -i smpte_bars -t 10 output_file
ffmpeg -f lavfi -i testsrc -t 10 output_file
ffmpeg -f concat -i mylist.txt -c copy output_file
This command takes two or more files of the same file type and joins them together to make a single file. All that the program needs is a text file with a list specifying the files that should be joined. However, it only works properly if the files to be combined have the exact same codec and technical specifications. Be careful, ffmpeg may appear to have successfully joined two video files with different codecs, but may only bring over the audio from the second file or have other weird behaviors. Don’t use this command for joining files with different codecs and technical specs and always preview your resulting video file!
-ffmpeg documentation on concatenating files (full list of flags, commands, https://trac.ffmpeg.org/wiki/Concatenate)
+ffmpeg documentation on concatenating files (full list of flags, commands, https://trac.ffmpeg.org/wiki/Concatenate)