diff --git a/index.html b/index.html
index d4ef633..b2d1fc7 100644
--- a/index.html
+++ b/index.html
@@ -133,15 +133,14 @@
-
ffprobe -i filename.avi -show_format -show_streams -print_format xml
+
Join multiple files together
+
ffprobe -i filename.avi -show_format -show_streams -print_format xml
-
This command extracts technical metadata from a video file and displays it in xml.
ffmpeg documentation on ffprobe (full list of flags, commands, https://www.ffmpeg.org/ffprobe.html)
-
- ffprobe: calls the program
- -i: tells ffprobe to expect input files
@@ -157,7 +156,7 @@
-
+
@@ -179,10 +178,10 @@
- concat: ffmpeg’s concatenate command
- -i: tells ffmpeg to expect input files
- mylist.txt: a text file indicating the list of files to be concatenated. Should be formatted as:
- - file [path to file 1]
- - file [path to file 2]
- - -c copy: specifies the encoder for the output file by telling the program to copy the codecs of the original files and use them for the output file
- - [output]: desired filename for the output file
+ - file [path to file 1]
+ - file [path to file 2]
+ - -c copy: specifies the encoder for the output file by telling the program to copy the codecs of the original files and use them for the output file
+ - [output]: desired filename for the output file