You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: index.html
+5-5Lines changed: 5 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -1506,7 +1506,7 @@ <h5>Check video file interlacement patterns</h5>
1506
1506
<dt>-i <em>input_file</em></dt><dd>path, name and extension of the input file</dd>
1507
1507
<dt>-filter:v idet</dt><dd>This calls the <ahref="https://ffmpeg.org/ffmpeg-filters.html#idet" target="_blank">idet (detect video interlacing type) filter</a>.</dd>
1508
1508
<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>
<dt>-i <em>input_file</em></dt><dd>path, name and extension of the input file</dd>
2024
2024
<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>
2026
2026
</dl>
2027
2027
<pclass="link"></p>
2028
2028
</div>
@@ -2041,7 +2041,7 @@ <h3>Check FFV1 Version 3 fixity</h3>
2041
2041
<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>
2042
2042
<dt>-i <em>input_file</em></dt><dd>path, name and extension of the input file</dd>
2043
2043
<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>
2045
2045
</dl>
2046
2046
<pclass="link"></p>
2047
2047
</div>
@@ -2128,7 +2128,7 @@ <h5>Get checksum for video/audio stream</h5>
2128
2128
<dt>-i <em>input_file</em></dt><dd>path, name and extension of the input file</dd>
2129
2129
<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>
2130
2130
<dt>-f hash -hash md5</dt><dd>produce a checksum hash, and set the hash algorithm to md5. See the official <ahref="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>
2132
2132
</dl>
2133
2133
<pclass="link"></p>
2134
2134
</div>
@@ -2148,7 +2148,7 @@ <h5>Get individual checksums for all video/audio streams ("Streamhash")</h5>
2148
2148
<dt>-i <em>input_file</em></dt><dd>path, name and extension of the input file</dd>
2149
2149
<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>
2150
2150
<dt>-f streamhash -hash md5</dt><dd>produce a checksum hash per-stream, and set the hash algorithm to md5. See the official <ahref="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>
2152
2152
<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>
2153
2153
</dl>
2154
2154
<p>The output looks like this, for example (1 video, 2 audio streams):
0 commit comments