From e6317731c9177667d410954fc0e37ae9f6d96fe5 Mon Sep 17 00:00:00 2001 From: Reto Kromer Date: Sat, 14 Apr 2018 12:36:03 +0200 Subject: [PATCH] add missing space --- index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.html b/index.html index 75e0c79..941e883 100644 --- a/index.html +++ b/index.html @@ -221,7 +221,7 @@

This script will take a video that is encoded in the DV Codec but wrapped in a different container (such as MOV) and rewrap it into a raw DV file (with the .dv extension). Since DV files potentially contain a great deal of provenance metadata within the DV stream, it is necessary to rewrap files in this method to avoid unintentional stripping of this metadata.

ffmpeg
starts the command
-
-iinput_file
path and name of the input file
+
-i input_file
path and name of the input file
-f rawvideo
this tells FFmpeg to pass the video stream as raw video data without remuxing. This step is what ensures the survival of embedded metadata versus a standard rewrap.
-c:v copy
copy the DV stream directly, without re-encoding.
output_file.dv
tells FFmpeg to use the DV wrapper for the output.