diff --git a/index.html b/index.html index 794e7cd..9196d6e 100644 --- a/index.html +++ b/index.html @@ -391,7 +391,7 @@
-crf 18
sets the constant rate factor to a visually lossless value. Libx264 defaults to a crf of 23, considered medium quality; a smaller crf value produces a larger and higher quality video.
-preset veryslow
A slower preset will result in better compression and therefore a higher-quality file. The default is medium; slower presets are slow, slower, and veryslow.
-

Bear in mind that by default, libx264 will only encode a single video stream and a single audio stream, picking the ‘sbest’ of the options available. To preserve all video and audio streams, add -map parameters:

+

Bear in mind that by default, libx264 will only encode a single video stream and a single audio stream, picking the ‘best’ of the options available. To preserve all video and audio streams, add -map parameters:

ffmpeg -i concat:input_file1\|input_file2 -map 0:v -map 0:a -c:v libx264 -c:a copy output_file.mp4

-map 0:v
encodes all video streams