From 3402d968a79a39a1b09acf5b8239127497c507fd Mon Sep 17 00:00:00 2001 From: kfrn Date: Wed, 31 Jul 2019 23:32:05 +1200 Subject: [PATCH] =?UTF-8?q?Remove=20MKV=20=E2=86=92=20MP4=20command?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Addressing user feedback received by Andrew Weaver (@privatezero). When the source file is ffv1 in MKV, the command will fail on the `-c:v copy` flag, since MP4s can't house ffv1. Therefore, the command is misleading, and has limited value from an archival perspective. We already have a basic rewrap command (which includes a note addressing the possibility of stream/wrapper incompability), so I think our bases are covered with that. See https://github.com/amiaopensource/ffmprovisr/issues/392 --- index.html | 22 ---------------------- 1 file changed, 22 deletions(-) diff --git a/index.html b/index.html index 08bb434..fb6c486 100644 --- a/index.html +++ b/index.html @@ -213,28 +213,6 @@ - - - -
-

MKV to MP4

-

ffmpeg -i input_file.mkv -c:v copy -c:a aac output_file.mp4

-

This will convert your Matroska (MKV) files to MP4 files.

-
-
ffmpeg
starts the command
-
-i input_file
path and name of the input file
- The extension for the Matroska container is .mkv.
-
-c:v copy
copies the video stream without re-encoding it
-
-c:a aac
re-encodes the audio stream using the AAC audio codec
- Note that sadly MP4 cannot contain sound encoded by a PCM (Pulse-Code Modulation) audio codec.
- For silent videos you can replace -c:a aac by -an, which means that there will be no audio track in the output file.
-
output_file
path and name of the output file
- The extension for the MP4 container is .mp4.
-
- -
- -