gives context to second OCR command

This commit is contained in:
Ashley Blewer 2017-01-22 18:36:04 -05:00
parent 8e2ece7e40
commit ae14e4e576

View File

@ -500,31 +500,31 @@
</div> </div>
<!-- ends ocr --> <!-- ends ocr -->
<!-- show_entries --> <!-- Exports OCR -->
<span data-toggle="modal" data-target="#show_entries"><button type="button" class="btn btn-default" data-toggle="tooltip" data-placement="bottom" title="********">show_entries</button></span> <span data-toggle="modal" data-target="#Exports OCR"><button type="button" class="btn btn-default" data-toggle="tooltip" data-placement="bottom" title="Exports OCR from video to screen">Exports OCR</button></span>
<div id="show_entries" class="modal fade" tabindex="-1" role="dialog"> <div id="Exports OCR" class="modal fade" tabindex="-1" role="dialog">
<div class="modal-dialog modal-lg"> <div class="modal-dialog modal-lg">
<div class="modal-content"> <div class="modal-content">
<div class="well"> <div class="well">
<h3><!-- accurate title --></h3> <h3>Exports OCR data to screen</h3>
<p><code>ffprobe -show_entries frame_tags=lavfi.ocr.text -f lavfi -i "movie=input.mp4,ocr"</code></p> <p><code>ffprobe -show_entries frame_tags=lavfi.ocr.text -f lavfi -i "movie=<i>input_file</i>,ocr"</code></p>
<dl> <dl>
<dt>ffprobe</dt><dd>starts the command</dd> <dt>ffprobe</dt><dd>starts the command</dd>
<dt>-show_entries</dt><dd><!-- ??? --></dd> <dt>-show_entries</dt><dd>sets a list of entries to show</dd>
<dt>frame_tags=lavfi.ocr.text</dt><dd><!-- ??? --></dd> <dt>frame_tags=lavfi.ocr.text</dt><dd>shows the <i>lavfi.ocr.text</i> tag in the frame section of the video</dd>
<dt>-f lavfi</dt><dd>tells ffmpeg to use the Libavfilter input virtual device <a href="http://ffmpeg.org/ffmpeg-devices.html#lavfi" target="_blank">[more]</a></dd> <dt>-f lavfi</dt><dd>tells ffmpeg to use the Libavfilter input virtual device <a href="http://ffmpeg.org/ffmpeg-devices.html#lavfi" target="_blank">[more]</a></dd>
<dt>-i "movie=input.mp4,ocr"</dt><dd>path, name and extension of the input file</dd> <dt>-i "movie=<i>input_file</i>,ocr"</dt><dd>declares 'movie' as <i>input_file</i> and passes in the 'ocr' command</dd>
</dl> </dl>
<div class="sample-image"> <div class="sample-image">
<!-- <h4>Example of filter output</h4> --> <!-- <h4>Example of filter output</h4> -->
<!-- <img src="" alt="show_entries example"> --> <!-- <img src="" alt="Exports OCR example"> -->
</div> </div>
<p class="link"></p> <p class="link"></p>
</div> </div>
</div> </div>
</div> </div>
</div> </div>
<!-- ends show_entries --> <!-- ends Exports OCR -->
</div> </div>
<div class="well"> <div class="well">