Add example images for deinterlace recipe

This commit is contained in:
kfrn 2017-02-27 09:52:56 +13:00
parent 96bb20cf52
commit 09185ca7bc
3 changed files with 6 additions and 0 deletions

BIN
img/deinterlaced_video.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 296 KiB

BIN
img/interlaced_video.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 344 KiB

View File

@ -470,6 +470,12 @@
<p>For more H.264 encoding options, see the latter section of the <a href="https://amiaopensource.github.io/ffmprovisr/#transcode_h264">encode H.264 command</a>.</p>
<p><code>"yadif,format=pix_fmts=yuv420p"</code> is an ffmpeg <a href="https://trac.ffmpeg.org/wiki/FilteringGuide#FiltergraphChainFilterrelationship">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>
The enclosing quote marks are necessary when you use spaces within the filtergraph, e.g. <code>-vf "yadif, format=pix_fmts=yuv420p"</code>, and are included above as an example of good practice.</p>
<div class="sample-image">
<h4>Example</h4>
<p>Before and after deinterlacing:</p>
<img src="img/interlaced_video.png" alt="VLC screenshot of original interlaced video">
<img src="img/deinterlaced_video.png" alt="VLC screenshot of deinterlaced video">
</div>
<p class="link"></p>
</div>
</div>