diff --git a/index.html b/index.html index 6a4ec25..096d664 100644 --- a/index.html +++ b/index.html @@ -1315,7 +1315,8 @@
ffmpeg -i input_file -af "asetnsamples=n=48000" -f framemd5 -vn output_file
This will create an MD5 checksum for each group of 48000 audio samples.
The number of samples per group can be set arbitrarily, but it's good practice to match the samplerate of the media file (so you will get one checksum per second).
This will create an MD5 checksum for each group of 48000 audio samples.
+ The number of samples per group can be set arbitrarily, but it's good practice to match the samplerate of the media file (so you will get one checksum per second).
Examples for other samplerates:
- Path, name and extension of the output file.
- In order to have an incrementing number in each segment filename, FFmpeg supports printf-style syntax for a counter.
-
- In this example, '%03d' means: 3-digits, zero-padded
- Examples:
-
%03d
: 000, 001, 002, ... 999%05d
: 00000, 00001, 00002, ... 99999%d
: 0, 1, 2, 3, 4, ... 23, 24, etc. Path, name and extension of the output file.
+ In order to have an incrementing number in each segment filename, FFmpeg supports printf-style syntax for a counter.
In this example, '%03d' means: 3-digits, zero-padded
+ Examples:
%03d
: 000, 001, 002, ... 999%05d
: 00000, 00001, 00002, ... 99999%d
: 0, 1, 2, 3, 4, ... 23, 24, etc.