add view format info

This commit is contained in:
Kieran O'Leary 2016-08-29 10:20:30 +01:00 committed by GitHub
parent 139aa5a99e
commit 94dfe1a868

View File

@ -1138,6 +1138,30 @@ e.g.: <code>ffmpeg -f concat -safe 0 -i mylist.txt -c copy <i>output_file</i></c
</div>
</div>
<!-- ends set field order -->
<!-- View Format Info -->
<span data-toggle="modal" data-target="#view_format_info"><button type="button" class="btn btn-default" data-toggle="tooltip" data-placement="bottom" title="View format information">View format information</button></span>
<div id="view_format_info" class="modal fade" tabindex="-1" role="dialog">
<div class="modal-dialog modal-lg">
<div class="modal-content">
<div class="well">
<h3>View information about a specific format</h3>
<p><code>ffmpeg -h <i>type=name</i></code></p>
<dl>
<dt>ffmpeg</dt><dd>starts the command</dd>
<dt>-h</dt><dd>Call the help option</dd>
<dt>type=name</dt><dd>Tells ffmpeg which kind of option you want, for example:
<dd><code>encoder=libx264</code></dd>
<dd><code>decoder=mp3</code></dd>
<dd><code>muxer=matroska</code></dd>
<dd><code>demuxer=mov</code></dd>
<dd><code>filter=crop</code></dd>
</dl>
<p class="link"></p>
</div>
</div>
</div>
</div>
<!-- ends View Format info -->
</div><!-- closes the well -->