diff --git a/index.html b/index.html index 3cf4b3c..cfd43de 100644 --- a/index.html +++ b/index.html @@ -276,7 +276,7 @@
Transcode into a deinterlaced Apple ProRes LT
-

ffmpeg -i input_file -c:v prores -profile:v 1 -vf yadif -c:a pcm_s16le output_file.mov

+

ffmpeg -i input_file -c:v prores -profile:v 1 -vf yadif -c:a pcm_s16le output_file

This command transcodes an input file into a deinterlaced Apple ProRes 422 LT file with 16-bit linear PCM encoded audio. The file is deinterlaced using the yadif filter (Yet Another De-Interlacing Filter).

ffmpeg
starts the command
@@ -292,7 +292,7 @@
-vf yadif
Runs a deinterlacing video filter (yet another deinterlacing filter) on the new file. -vf is an alias for -filter:v.
-c:a pcm_s16le
tells FFmpeg to encode the audio stream in 16-bit linear PCM
output_file
path, name and extension of the output file
- The extension for the QuickTime container is .mov.
+ There are currently three possible containers for ProRes 422 and 4444 which are all supported by FFmpeg: QuickTime (.mov), Matroska (.mkv) and Material eXchange Format (.mxf).

FFmpeg comes with more than one ProRes encoder: