diff --git a/index.html b/index.html
index 23788f7..2b67770 100644
--- a/index.html
+++ b/index.html
@@ -958,7 +958,7 @@ foreach ($file in $inputfiles) {
{Opens the code block.
$output = [io.path]::ChangeExtension($file, '.mkv')Sets up the output file: it will be located in the current folder and keep the same filename, but will have an .mkv extension instead of .mp4.
ffmpeg -i $fileCarry out the following ffmpeg command for each input file.
- Note: To call ffmpeg here as just ‘ffmpeg’ (rather than entering the full path to ffmpeg.exe), you must make sure that it's correctly configured. See this article, especially the section ‘Add to Path’.
+ Note: To call ffmpeg here as just ‘ffmpeg’ (rather than entering the full path to ffmpeg.exe), you must make sure that it’s correctly configured. See this article, especially the section ‘Add to Path’.
-map 0retain all streams
-c copyenable stream copy (no re-encode)
$outputThe output file is set to the value of the $output
variable declared above: i.e., the current file name with an .mkv extension.