mirror of
https://github.com/amiaopensource/ffmprovisr.git
synced 2024-11-06 05:27:24 +01:00
moves Check FFV1 alphabetically for section
This commit is contained in:
parent
b9b7e0fef9
commit
3b7ce0e79f
39
index.html
39
index.html
@ -3,7 +3,6 @@
|
||||
<head>
|
||||
<title>ffmprovisr</title>
|
||||
<meta name="viewport" charset="utf-8" content="text/html, width=device-width, initial-scale=1">
|
||||
<link href="https://fonts.googleapis.com/css?family=Montserrat%7CMerriweather" rel="stylesheet" type="text/css">
|
||||
<link rel="stylesheet" href="css/css.css">
|
||||
<link rel="icon" href="img/vhs.ico">
|
||||
<script src="js/jquery.min.js"></script>
|
||||
@ -1711,6 +1710,25 @@
|
||||
</div>
|
||||
<!-- ends batch processing (Windows) -->
|
||||
|
||||
<!-- Check FFV1 fixity -->
|
||||
<label class="recipe" for="check_FFV1_fixity">Check FFV1 fixity</label>
|
||||
<input type="checkbox" id="check_FFV1_fixity">
|
||||
<div class="hiding">
|
||||
<h3>Check FFV1 Version 3 fixity</h3>
|
||||
<p><code>ffmpeg -report -i <i>input_file</i> -f null -</code></p>
|
||||
<p>This decodes your video and displays any CRC checksum mismatches. These errors will display in your terminal like this: <code>[ffv1 @ 0x1b04660] CRC mismatch 350FBD8A!at 0.272000 seconds</code></p>
|
||||
<p>Frame CRCs are enabled by default in FFV1 Version 3.</p>
|
||||
<dl>
|
||||
<dt>ffmpeg</dt><dd>starts the command</dd>
|
||||
<dt>-report</dt><dd>Dump full command line and console output to a file named <i>ffmpeg-YYYYMMDD-HHMMSS.log</i> in the current directory. It also implies <code>-loglevel verbose</code>.</dd>
|
||||
<dt>-i <i>input_file</i></dt><dd>path, name and extension of the input file</dd>
|
||||
<dt>-f null</dt><dd>Video is decoded with the <code>null</code> muxer. This allows video decoding without creating an output file.</dd>
|
||||
<dt>-</dt><dd>FFmpeg syntax requires a specified output, and <code>-</code> is just a place holder. No file is actually created. </dd>
|
||||
</dl>
|
||||
<p class="link"></p>
|
||||
</div>
|
||||
<!-- ends Check FFV1 Fixity -->
|
||||
|
||||
<!-- Create frame md5s -->
|
||||
<label class="recipe" for="create_frame_md5s_v">Create MD5 checksums (video frames)</label>
|
||||
<input type="checkbox" id="create_frame_md5s_v">
|
||||
@ -1829,25 +1847,6 @@
|
||||
</div>
|
||||
<!-- ends QCTools Report (no audio) -->
|
||||
|
||||
<!-- Check FFV1 fixity -->
|
||||
<label class="recipe" for="check_FFV1_fixity">Check FFV1 fixity</label>
|
||||
<input type="checkbox" id="check_FFV1_fixity">
|
||||
<div class="hiding">
|
||||
<h3>Check FFV1 Version 3 fixity</h3>
|
||||
<p><code>ffmpeg -report -i <i>input_file</i> -f null -</code></p>
|
||||
<p>This decodes your video and displays any CRC checksum mismatches. These errors will display in your terminal like this: <code>[ffv1 @ 0x1b04660] CRC mismatch 350FBD8A!at 0.272000 seconds</code></p>
|
||||
<p>Frame CRCs are enabled by default in FFV1 Version 3.</p>
|
||||
<dl>
|
||||
<dt>ffmpeg</dt><dd>starts the command</dd>
|
||||
<dt>-report</dt><dd>Dump full command line and console output to a file named <i>ffmpeg-YYYYMMDD-HHMMSS.log</i> in the current directory. It also implies <code>-loglevel verbose</code>.</dd>
|
||||
<dt>-i <i>input_file</i></dt><dd>path, name and extension of the input file</dd>
|
||||
<dt>-f null</dt><dd>Video is decoded with the <code>null</code> muxer. This allows video decoding without creating an output file.</dd>
|
||||
<dt>-</dt><dd>FFmpeg syntax requires a specified output, and <code>-</code> is just a place holder. No file is actually created. </dd>
|
||||
</dl>
|
||||
<p class="link"></p>
|
||||
</div>
|
||||
<!-- ends Check FFV1 Fixity -->
|
||||
|
||||
<!-- Read/Extract EIA-608 Closed Captions -->
|
||||
<label class="recipe" for="readeia608">Read/Extract EIA-608 Closed Captioning</label>
|
||||
<input type="checkbox" id="readeia608">
|
||||
|
Loading…
Reference in New Issue
Block a user