Skip to content

Commit b8eeeb8

Browse files
authored
Merge pull request #480 from amiaopensource/dash
Specify dash in command
2 parents f57e2d4 + bb4cc16 commit b8eeeb8

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

index.html

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1506,7 +1506,7 @@ <h5>Check video file interlacement patterns</h5>
15061506
<dt>-i <em>input_file</em></dt><dd>path, name and extension of the input file</dd>
15071507
<dt>-filter:v idet</dt><dd>This calls the <a href="https://ffmpeg.org/ffmpeg-filters.html#idet" target="_blank">idet (detect video interlacing type) filter</a>.</dd>
15081508
<dt>-f null</dt><dd>Video is decoded with the <code>null</code> muxer. This allows video decoding without creating an output file.</dd>
1509-
<dt>-</dt><dd>FFmpeg syntax requires a specified output, and <code>-</code> is just a place holder. No file is actually created.</dd>
1509+
<dt>-</dt><dd>The FFmpeg syntax requires a specified output, and <code>-</code> prints the output to the screen (STDOUT), rather than creating a file.</dd>
15101510
</dl>
15111511
<p class="link"></p>
15121512
</div>
@@ -2022,7 +2022,7 @@ <h5>Check decoder errors</h5>
20222022
<dt>ffmpeg</dt><dd>starts the command</dd>
20232023
<dt>-i <em>input_file</em></dt><dd>path, name and extension of the input file</dd>
20242024
<dt>-f null</dt><dd>Video is decoded with the <code>null</code> muxer. This allows video decoding without creating an output file.</dd>
2025-
<dt>-</dt><dd>FFmpeg syntax requires a specified output, and <code>-</code> is just a place holder. No file is actually created.</dd>
2025+
<dt>-</dt><dd>The FFmpeg syntax requires a specified output, and <code>-</code> prints the output to the screen (STDOUT), rather than creating a file.</dd>
20262026
</dl>
20272027
<p class="link"></p>
20282028
</div>
@@ -2041,7 +2041,7 @@ <h3>Check FFV1 Version 3 fixity</h3>
20412041
<dt>-report</dt><dd>Dump full command line and console output to a file named <em>ffmpeg-YYYYMMDD-HHMMSS.log</em> in the current directory. It also implies <code>-loglevel verbose</code>.</dd>
20422042
<dt>-i <em>input_file</em></dt><dd>path, name and extension of the input file</dd>
20432043
<dt>-f null</dt><dd>Video is decoded with the <code>null</code> muxer. This allows video decoding without creating an output file.</dd>
2044-
<dt>-</dt><dd>FFmpeg syntax requires a specified output, and <code>-</code> is just a place holder. No file is actually created.</dd>
2044+
<dt>-</dt><dd>The FFmpeg syntax requires a specified output, and <code>-</code> prints the output to the screen (STDOUT), rather than creating a file.</dd>
20452045
</dl>
20462046
<p class="link"></p>
20472047
</div>
@@ -2128,7 +2128,7 @@ <h5>Get checksum for video/audio stream</h5>
21282128
<dt>-i <em>input_file</em></dt><dd>path, name and extension of the input file</dd>
21292129
<dt>-map 0:v:0</dt><dd>designated the first video stream as the stream on which to perform this hash generation operation. <code>-map 0</code> can be used to run the operation on all streams.</dd>
21302130
<dt>-f hash -hash md5</dt><dd>produce a checksum hash, and set the hash algorithm to md5. See the official <a href="https://ffmpeg.org/ffmpeg-formats.html#hash" target="_blank">documentation on hash</a> for other algorithms.</dd>
2131-
<dt>-</dt><dd>FFmpeg syntax requires a specified output, and <code>-</code> is just a place holder. No file is actually created.</dd>
2131+
<dt>-</dt><dd>The FFmpeg syntax requires a specified output, and <code>-</code> prints the output to the screen (STDOUT), rather than creating a file.</dd>
21322132
</dl>
21332133
<p class="link"></p>
21342134
</div>
@@ -2148,7 +2148,7 @@ <h5>Get individual checksums for all video/audio streams ("Streamhash")</h5>
21482148
<dt>-i <em>input_file</em></dt><dd>path, name and extension of the input file</dd>
21492149
<dt>-map 0</dt><dd>map ALL streams from input file to output. If you omit this, ffmpeg chooses only the first "best" (*) stream: 1 for audio, 1 for video (not all streams).</dd>
21502150
<dt>-f streamhash -hash md5</dt><dd>produce a checksum hash per-stream, and set the hash algorithm to md5. See the official <a href="https://www.ffmpeg.org/ffmpeg-formats.html#streamhash-1" target="_blank">documentation on streamhash</a> for other algorithms and more details.</dd>
2151-
<dt>-</dt><dd>FFmpeg syntax requires a specified output, and <code>-</code> is just a place holder. No file is actually created. Choose an output filename to write the hashcode lines into a textfile.</dd>
2151+
<dt>-</dt><dd>The FFmpeg syntax requires a specified output, and <code>-</code> prints the output to the screen (STDOUT), rather than creating a file. Choose an output filename to write the hashcode lines into a textfile.</dd>
21522152
<dt>-v quiet</dt><dd>(Optional) Disables FFmpeg's processing output. With this option it's easier to see the text output of the hashes.</dd>
21532153
</dl>
21542154
<p>The output looks like this, for example (1 video, 2 audio streams):

0 commit comments

Comments
 (0)