diff --git a/index.html b/index.html
index 9d52e35..bcfb4b7 100644
--- a/index.html
+++ b/index.html
@@ -430,13 +430,15 @@ path_name_and_extension_to_the_last_file
H.264 from DCP
-
ffmpeg -i input_file.mxf -c:v libx264 -pix_fmt yuv420p output_file
+
ffmpeg -i input_video_file.mxf -i input_audio_file.mxf -c:v libx264 -pix_fmt yuv420p -c:a copy output_file
This will transcode mxf wrapped video and audio files to an H.264 encoded .mp4 file. Please note this only works for non-encrypted DCPs.
- ffmpeg
- starts the command
- - -i input_file
- path and name of the video input file. This extension must be .mxf
+ - -i input_video_file
- path and name of the video input file. This extension must be .mxf
+ - -i input_audio_file
- path and name of the audio input file. This extension must be .mxf
- -c:v libx264
- transcodes video to H.264
- -pix_fmt yuv420p
- sets pixel format to yuv420p
+ - -c:a copy
- use stream copy mode to re-mux instead of re-encode
- output_file
- path, name and extension of the output file