From 70865523109b24d0e0352c129014adf6e48b2b59 Mon Sep 17 00:00:00 2001 From: kfrn Date: Mon, 31 Oct 2016 21:08:16 +1300 Subject: [PATCH] Reinsert space for ffmpeg options into generic command; fix typo --- index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.html b/index.html index 8f20a55..837786b 100644 --- a/index.html +++ b/index.html @@ -689,7 +689,7 @@ Execute the .sh file with the command sh Rewrap-MXF.sh.

Modify the ffmpeg script as needed to perform different transcodes :)

The basic pattern will look similar to this:
- for item in *.ext; do ffmpeg -i $item "${file%.ext}_suffix.ext"

+ for item in *.ext; do ffmpeg -i $item (ffmpeg options here) "${item%.ext}_suffix.ext"

e.g., if an input file is bestmovie002.avi, its output will be bestmovie002_suffix.avi.