diff --git a/index.html b/index.html index 39a42c5..b5536e6 100644 --- a/index.html +++ b/index.html @@ -651,13 +651,13 @@ path_name_and_extension_to_the_last_file - - -
ffmpeg -i input_file -f null -
This decodes your video and displays any crc checksum mismatches. These errors will display in your terminal like this: [ffv1 @ 0x1b04660] CRC mismatch 350FBD8A!at 0.272000 seconds
ffmpeg -i input_file -map 0 -dn -c:v ffv1 -level 3 -g 1 -slicecrc 1 -slices 16 -c:a copy output_file.mkv -f framemd5 -an md5_output_file
This will losslessly trancode your video with the FFV1 Version 3 codec in a Matroska container. In order to verify losslessness, a framemd5 of the source video is also generated. For more information on FFV1 encoding, try the ffmpeg wiki.
+.mkv
extension to save your file in a matroska container. Optionally, choose a different extension if you want a different container, such as .mov
or .avi.