You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Add new "deinterlace video fields to frames" section
A new section was added specifically to address how to deinterlace video
to frames, preserving the visual cadence of the source material.
An animated example of field separation was also provided for the
documentation.
<dt>-i <em>input_file</em></dt><dd>path, name and extension of the input file</dd>
1361
1361
<dt>-c:v libx264</dt><dd>encodes video stream with libx264 (h264)</dd>
1362
1362
<dt>-filter:v</dt><dd>a video filter will be used</dd>
1363
1363
<dt>"</dt><dd>quotation mark to start filtergraph</dd>
1364
-
<dt>idet</dt><dd>detect interlaced video field order<br>
1365
-
<ahref="https://ffmpeg.org/ffmpeg-filters.html#idet" target="_blank">idet</a> will try to detect if the video is interlaced, and if so, what the order of the fields are (top-field-first, or bottom-field-first). This is done to ensure the output of the deinterlacing filter is correct.</dd>
By default, <ahref="https://ffmpeg.org/ffmpeg-filters.html#bwdif-1" target="_blank">bwdif</a> will output one frame for each field, matching the visual cadence of interlaced video. Outputting one frame for each <em>frame</em> (thereby halving the number of output frames per second) with <code>bwdif=mode=send_frame</code> can be used when the presentation device is not capable of reproducing 50 (PAL) or 60 (NTSC) frames per second.</dd>
1364
+
<dt>yadif</dt><dd>deinterlacing filter (‘yet another deinterlacing filter’)<br>
1365
+
By default, <ahref="https://ffmpeg.org/ffmpeg-filters.html#yadif-1" target="_blank">yadif</a> will output one frame for each frame. Outputting one frame for each <em>field</em> (thereby doubling the frame rate) with <code>yadif=1</code> may produce visually better results.</dd>
1368
1366
<dt>scale=1440:1080:flags=lanczos</dt><dd>resizes the image to 1440x1080, using the Lanczos scaling algorithm, which is slower but better than the default bilinear algorithm.</dd>
1369
1367
<dt>pad=1920:1080:(ow-iw)/2:(oh-ih)/2</dt><dd>pads the area around the 4:3 input video to create a 16:9 output video</dd>
1370
1368
<dt>format=yuv420p</dt><dd>specifies a pixel format of Y′C<sub>B</sub>C<sub>R</sub> 4:2:0</dd>
@@ -1381,26 +1379,24 @@ <h5>Upscaled, Pillar-boxed HD H.264 Access Files from SD NTSC source</h5>
<p>This command takes an interlaced input file and outputs a deinterlaced H.264 MP4.</p>
1386
1384
<dl>
1387
1385
<dt>ffmpeg</dt><dd>starts the command</dd>
1388
1386
<dt>-i <em>input file</em></dt><dd>path, name and extension of the input file</dd>
1389
1387
<dt>-c:v libx264</dt><dd>tells FFmpeg to encode the video stream as H.264</dd>
1390
1388
<dt>-vf</dt><dd>video filtering will be used (<code>-vf</code> is an alias of <code>-filter:v</code>)</dd>
1391
1389
<dt>"</dt><dd>start of filtergraph (see below)</dd>
1392
-
<dt>idet</dt><dd>detect interlaced video field order<br>
1393
-
<ahref="https://ffmpeg.org/ffmpeg-filters.html#idet" target="_blank">idet</a> will try to detect if the video is interlaced, and if so, what the order of the fields are (top-field-first, or bottom-field-first). This is done to ensure the output of the deinterlacing filter is correct.</dd>
By default, <ahref="https://ffmpeg.org/ffmpeg-filters.html#bwdif-1" target="_blank">bwdif</a> will output one frame for each field, matching the visual cadence of interlaced video. Outputting one frame for each <em>frame</em> (thereby halving the number of output frames per second) with <code>bwdif=mode=send_frame</code> can be used when the presentation device is not capable of reproducing 50 (PAL) or 60 (NTSC) frames per second.</dd>
1390
+
<dt>yadif</dt><dd>deinterlacing filter (‘yet another deinterlacing filter’)<br>
1391
+
By default, <ahref="https://ffmpeg.org/ffmpeg-filters.html#yadif-1" target="_blank">yadif</a> will output one frame for each frame. Outputting one frame for each <em>field</em> (thereby doubling the frame rate) with <code>yadif=1</code> may produce visually better results.</dd>
1396
1392
<dt>,</dt><dd>separates filters</dd>
1397
1393
<dt>format=yuv420p</dt><dd>chroma subsampling set to 4:2:0<br>
1398
1394
By default, <code>libx264</code> will use a chroma subsampling scheme that is the closest match to that of the input. This can result in Y′C<sub>B</sub>C<sub>R</sub> 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, therefore it’s advisable to specify 4:2:0 chroma subsampling.</dd>
1399
1395
<dt>"</dt><dd>end of filtergraph</dd>
1400
1396
<dt><em>output file</em></dt><dd>path, name and extension of the output file</dd>
1401
1397
</dl>
1402
-
<p><code>"idet,bwdif,format=yuv420p"</code> is an FFmpeg <ahref="https://trac.ffmpeg.org/wiki/FilteringGuide#FiltergraphChainFilterrelationship" target="_blank">filtergraph</a>. Here the filtergraph is made up of one filter chain, which is itself made up of the three filters (separated by the comma).<br>
1403
-
The enclosing quote marks are necessary when you use spaces within the filtergraph, e.g. <code>-vf "idet, bwdif, format=yuv420p"</code>, and are included above as an example of good practice.</p>
1398
+
<p><code>"yadif,format=yuv420p"</code> is an FFmpeg <ahref="https://trac.ffmpeg.org/wiki/FilteringGuide#FiltergraphChainFilterrelationship" target="_blank">filtergraph</a>. Here the filtergraph is made up of one filter chain, which is itself made up of the two filters (separated by the comma).<br>
1399
+
The enclosing quote marks are necessary when you use spaces within the filtergraph, e.g. <code>-vf "yadif, format=yuv420p"</code>, and are included above as an example of good practice.</p>
1404
1400
<p><strong>Note:</strong> FFmpeg includes several deinterlacers apart from <ahref="https://ffmpeg.org/ffmpeg-filters.html#yadif-1" target="_blank">yadif</a>: <ahref="https://ffmpeg.org/ffmpeg-filters.html#bwdif" target="_blank">bwdif</a>, <ahref="https://ffmpeg.org/ffmpeg-filters.html#w3fdif" target="_blank">w3fdif</a>, <ahref="https://ffmpeg.org/ffmpeg-filters.html#kerndeint" target="_blank">kerndeint</a>, and <ahref="https://ffmpeg.org/ffmpeg-filters.html#nnedi" target="_blank">nnedi</a>.</p>
1405
1401
<p>For more H.264 encoding options, see the latter section of the <ahref="#transcode_h264">encode H.264 command</a>.</p>
1406
1402
<divclass="sample-image">
@@ -1413,6 +1409,43 @@ <h2>Example</h2>
1413
1409
</div>
1414
1410
<!-- ends Deinterlace video -->
1415
1411
1412
+
<!-- Deinterlace video fields -->
1413
+
<labelclass="recipe" for="deinterlace_fields">Deinterlace video fields to frames</label>
<p>This command takes an interlaced input file and outputs a deinterlaced H.264 MP4, with each field separated into its own frame. This is preferred for interlaced video that contains a lot of motion, as the double-rate output preserves the visual cadence of the source material.</p>
1419
+
<dl>
1420
+
<dt>ffmpeg</dt><dd>starts the command</dd>
1421
+
<dt>-i <em>input file</em></dt><dd>path, name and extension of the input file</dd>
1422
+
<dt>-c:v libx264</dt><dd>tells FFmpeg to encode the video stream as H.264</dd>
1423
+
<dt>-vf</dt><dd>video filtering will be used (<code>-vf</code> is an alias of <code>-filter:v</code>)</dd>
1424
+
<dt>"</dt><dd>start of filtergraph (see below)</dd>
1425
+
<dt>idet</dt><dd>detect interlaced video field order<br>
1426
+
<ahref="https://ffmpeg.org/ffmpeg-filters.html#idet" target="_blank">idet</a> will try to detect if the video is interlaced, and if so, what the order of the fields are (top-field-first, or bottom-field-first). This is done to ensure the output of the deinterlacing filter is correct.</dd>
By default, <ahref="https://ffmpeg.org/ffmpeg-filters.html#bwdif-1" target="_blank">bwdif</a> will output one frame for each field, matching the visual cadence of interlaced video. </dd>
1429
+
<dt>,</dt><dd>separates filters</dd>
1430
+
<dt>format=yuv420p</dt><dd>chroma subsampling set to 4:2:0<br>
1431
+
By default, <code>libx264</code> will use a chroma subsampling scheme that is the closest match to that of the input. This can result in Y′C<sub>B</sub>C<sub>R</sub> 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, therefore it’s advisable to specify 4:2:0 chroma subsampling.</dd>
1432
+
<dt>"</dt><dd>end of filtergraph</dd>
1433
+
<dt><em>output file</em></dt><dd>path, name and extension of the output file</dd>
1434
+
</dl>
1435
+
<p><code>"idet,bwdif,format=yuv420p"</code> is an FFmpeg <ahref="https://trac.ffmpeg.org/wiki/FilteringGuide#FiltergraphChainFilterrelationship" target="_blank">filtergraph</a>. Here the filtergraph is made up of one filter chain, which is itself made up of the three filters (separated by the comma).<br>
1436
+
The enclosing quote marks are necessary when you use spaces within the filtergraph, e.g. <code>-vf "idet, bwdif, format=yuv420p"</code>, and are included above as an example of good practice.</p>
1437
+
<p><strong>Note:</strong> bwdif also supports the older method of outputting one frame for each frame (thereby halving the number of output frames per second) with the syntax <code>bwdif=mode=send_frame</code>. This can be used when the presentation device is not capable of reproducing 50 (PAL) or 60 (NTSC) frames per second.</p>
1438
+
<p>For more H.264 encoding options, see the latter section of the <ahref="#transcode_h264">encode H.264 command</a>.</p>
1439
+
<divclass="sample-image">
1440
+
<h2>Example</h2>
1441
+
<p>Before and after deinterlacing with bwdif:</p>
1442
+
<imgsrc="img/interlaced_video_fields.png" alt="VLC screenshot of original interlaced video">
1443
+
<imgsrc="img/deinterlaced_video_frames.png" alt="VLC screenshot of deinterlaced video">
0 commit comments