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.