mirror of
https://github.com/amiaopensource/ffmprovisr.git
synced 2025-01-14 04:27:09 +01:00
added MKV to MP4
This commit is contained in:
parent
212bb3f6cd
commit
19a6cdc432
24
index.html
24
index.html
@ -275,6 +275,30 @@
|
|||||||
</div>
|
</div>
|
||||||
<!-- ends Change display aspect ratio without re-encoding video -->
|
<!-- ends Change display aspect ratio without re-encoding video -->
|
||||||
|
|
||||||
|
<!-- MKV to MP4 -->
|
||||||
|
<span data-toggle="modal" data-target="#mkv_to_mp4"><button type="button" class="btn btn-default" data-toggle="tooltip" data-placement="bottom" title="Converts MKV to MP4">MKV to MP4</button></span>
|
||||||
|
<div id="mkv_to_mp4" class="modal fade" tabindex="-1" role="dialog">
|
||||||
|
<div class="modal-dialog modal-lg">
|
||||||
|
<div class="modal-content">
|
||||||
|
<div class="well">
|
||||||
|
<h3>MKV to MP4</h3>
|
||||||
|
<p><code>ffmpeg -i <i>input_file</i>.mkw -c:v copy -c:a aac <i>output_file</i>.mp4</code></p>
|
||||||
|
<p>This will convert your Matroska (MKV) files to MP4 files.</p>
|
||||||
|
<dl>
|
||||||
|
<dt>ffmpeg</dt><dd>starts the command</dd>
|
||||||
|
<dt>-i <i>input_file</i></dt><dd>path and name of the input file</dd>
|
||||||
|
<dt>-c:v copy</dt><dd>re-encodes using the same video codec</dd>
|
||||||
|
<dt>-c:a aac</dt><dd>re-encodes using the AAC audio codec</dd>
|
||||||
|
<dt><i>output_file</i></dt><dd>path and name of the output file<br/>
|
||||||
|
For silent videos you can replace <code>-c:a aac</code> by <code>-an</code>.</dd>
|
||||||
|
</dl>
|
||||||
|
<p class="link"></p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<!-- ends MKV to MP4 -->
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
<div class="well">
|
<div class="well">
|
||||||
<h4>Make derivative variations</h4>
|
<h4>Make derivative variations</h4>
|
||||||
|
Loading…
Reference in New Issue
Block a user