From 28e66b3ba1a1002536c69b807e99a02f03d16d9b Mon Sep 17 00:00:00 2001 From: Reto Kromer Date: Sat, 18 Feb 2017 15:03:22 +0100 Subject: [PATCH] typo --- index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.html b/index.html index 23788f7..2b67770 100644 --- a/index.html +++ b/index.html @@ -958,7 +958,7 @@

Create PowerShell script to batch process with ffmpeg

{
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 $file
Carry 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 0
retain all streams
-c copy
enable stream copy (no re-encode)
$output
The output file is set to the value of the $output variable declared above: i.e., the current file name with an .mkv extension.