diff --git a/index.html b/index.html index 629700a..07745fc 100644 --- a/index.html +++ b/index.html @@ -386,13 +386,13 @@ path_name_and_extension_to_the_last_file

Split audio and video tracks

ffmpeg -i input_file -map 0:0 video_output_file -map 0:1 audio_output_file

-

This command splits the original input file into a video and audio stream. The -map command identifies which streams are mapped to which file. To ensure that you’re mapping the right streams to the right file, run ffprobe before writing the script to identify which stream is 0:0, which is 0:1, etc.

+

This command splits the original input file into a video and audio stream. The -map command identifies which streams are mapped to which file. To ensure that you’re mapping the right streams to the right file, run ffprobe before writing the script to identify which stream is 0:0 and which is 0:1.

ffmpeg
starts the command
-i input_file
path, name and extension of the input file
-
-map 0:0
grabs the first streams (0:0) and to map it into:
+
-map 0:0
grabs the first streams (0:0) and maps it into:
video_output_file
path, name and extension of the video output file
-
-map 0:1
grabs the second streams (0:1) and to map it into:
+
-map 0:1
grabs the second streams (0:1) and maps it into:
audio_output_file
path, name and extension of the audio output file