diff --git a/index.html b/index.html index 535bde2..6e96ed2 100644 --- a/index.html +++ b/index.html @@ -119,7 +119,7 @@
ffmpeg
starts the command
-i input_file
path, name and extension of the input file
-c:v libx264
tells ffmpeg to change the video codec of the file to H.264
-
-pix_fmt yuv420p
libx264 will use a chroma subsampling scheme that is the closest match to that of the input. This can result in YUV 4:2:0, 4:2:2, or 4:4:4 chroma subsampling. QuickTime and most other non-FFmpeg based players can’t decode H.264 files that are not 4:2:0. In order to allow the video to play in all players, you can specify 4:2:0 chroma subsampling.
+
-pix_fmt yuv420p
libx264 will use a chroma subsampling scheme that is the closest match to that of the input. This can result in Y′CBCR 4:2:0, 4:2:2, or 4:4:4 chroma subsampling. QuickTime and most other non-FFmpeg based players can’t decode H.264 files that are not 4:2:0. In order to allow the video to play in all players, you can specify 4:2:0 chroma subsampling.
-c:a copy
tells ffmpeg not to change the audio codec
output_file
path, name and extension of the output file
@@ -452,7 +452,7 @@