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
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.