From 1b09c29e622ab391f8c2e4ea9e2f871bf7c70cb4 Mon Sep 17 00:00:00 2001 From: Reto Kromer Date: Thu, 3 Dec 2015 17:11:58 +0100 Subject: [PATCH] typo --- index.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/index.html b/index.html index a01a9b8..45a0829 100644 --- a/index.html +++ b/index.html @@ -125,8 +125,8 @@ Change the above data-target field, the button text, and the below div class (th

for f in *.MXF; do ffmpeg -i "$f" -c:a copy -c:v copy "${f%.MXF}.mov"; done

Re-wrap .MFX files in a specified directory to .mov files by using this code within a .sh file. The shell script (.sh file) and all MXF files must be contained in the same directory, and the script must be run from the directory itself (cd ~/Desktop/MXF_file_directory). Execute .sh file with the command sh Rewrap-MXF.sh

-
-c:a copy (copy audio codec)
-
-c:v copy (copy video codec)
+
-c:a copy
copy audio codec
+
-c:v copy
copy video codec

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