mirror of
https://github.com/amiaopensource/ffmprovisr.git
synced 2025-10-23 22:29:10 +02:00
Compare commits
6 Commits
v2017-03-0
...
v2017-03-2
Author | SHA1 | Date | |
---|---|---|---|
|
10765da46a | ||
|
ab2e6fb789 | ||
|
e3e48ded1a | ||
|
9d58f313d4 | ||
|
1371b380c9 | ||
|
dcb74e8da6 |
23
index.html
23
index.html
@@ -1408,6 +1408,29 @@ foreach ($file in $inputfiles) {
|
|||||||
</div>
|
</div>
|
||||||
<!-- ends Play VGA SMPTE bars -->
|
<!-- ends Play VGA SMPTE bars -->
|
||||||
|
|
||||||
|
<!-- Broken File -->
|
||||||
|
<span data-toggle="modal" data-target="#broken_file"><button type="button" class="btn btn-default" data-toggle="tooltip" data-placement="bottom" title="Make a broken file out of a perfectly good one">Broken file</button></span>
|
||||||
|
<div id="broken_file" class="modal fade" tabindex="-1" role="dialog">
|
||||||
|
<div class="modal-dialog modal-lg">
|
||||||
|
<div class="modal-content">
|
||||||
|
<div class="well">
|
||||||
|
<h3>Makes a broken test file</h3>
|
||||||
|
<p>Modifies an existing, functioning file and intentionally breaks it for testing purposes.</p>
|
||||||
|
<p><code>ffmpeg -i <i>input_file</i> -bsf noise=1 -c copy <i>output_file</i></code></p>
|
||||||
|
<dl>
|
||||||
|
<dt>ffmpeg</dt><dd>starts the command</dd>
|
||||||
|
<dt>-i <i>input_file</i></dt><dd>takes in a normal file</dd>
|
||||||
|
<dt>-bsf noise=1</dt><dd>sets bitstream filters for all to 'noise'. Filters can be set on specific filters using syntax such as <code>-bsf:v</code> for video, <code>-bsf:a</code> for audio, etc. The <a target="_blank" href="https://www.ffmpeg.org/ffmpeg-bitstream-filters.html#noise">noise filter</a> intentionally damages the contents of packets without damaging the container. This sets the noise level to 1 but it could be left blank or any number above 0.</dd>
|
||||||
|
<dt>-c copy</dt><dd>use stream copy mode to re-mux instead of re-encode</dd>
|
||||||
|
<dt><i>output_file</i></dt><dd>path, name and extension of the output file</dd>
|
||||||
|
</dl>
|
||||||
|
<p class="link"></p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<!-- ends Broken File -->
|
||||||
|
|
||||||
<!-- Sine wave -->
|
<!-- Sine wave -->
|
||||||
<span data-toggle="modal" data-target="#sine_wave"><button type="button" class="btn btn-default" data-toggle="tooltip" data-placement="bottom" title="Generate a test audio file playing a sine wave">Sine wave</button></span>
|
<span data-toggle="modal" data-target="#sine_wave"><button type="button" class="btn btn-default" data-toggle="tooltip" data-placement="bottom" title="Generate a test audio file playing a sine wave">Sine wave</button></span>
|
||||||
<div id="sine_wave" class="modal fade" tabindex="-1" role="dialog">
|
<div id="sine_wave" class="modal fade" tabindex="-1" role="dialog">
|
||||||
|
Reference in New Issue
Block a user