Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Support ffprobe frames and additional options #686

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
28 changes: 23 additions & 5 deletions docs/source/API/API/FFMpeg/Coordinate/AspectRatio.html
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,24 @@ <h2>Constants</h2>
<p><em>
</em></p>
<p>
</p>
</td>
</tr>
<tr>
<td>AR_8_5</td>
<td class="last">
<p><em>
</em></p>
<p>
</p>
</td>
</tr>
<tr>
<td>AR_25_16</td>
<td class="last">
<p><em>
</em></p>
<p>
</p>
</td>
</tr>
Expand Down Expand Up @@ -229,7 +247,7 @@ <h2>Methods</h2>
<h2>Details</h2>

<h3 id="method___construct">
<div class="location">at line 61</div>
<div class="location">at line 67</div>
<code> public
<strong>__construct</strong>($ratio)</code>
</h3>
Expand Down Expand Up @@ -257,7 +275,7 @@ <h4>Parameters</h4>
</div>

<h3 id="method_getValue">
<div class="location">at line 71</div>
<div class="location">at line 77</div>
<code> public float
<strong>getValue</strong>()</code>
</h3>
Expand All @@ -283,7 +301,7 @@ <h4>Return Value</h4>
</div>

<h3 id="method_calculateWidth">
<div class="location">at line 84</div>
<div class="location">at line 90</div>
<code> public Integer
<strong>calculateWidth</strong>(Integer $height, Integer $modulus = 1)</code>
</h3>
Expand Down Expand Up @@ -326,7 +344,7 @@ <h4>Return Value</h4>
</div>

<h3 id="method_calculateHeight">
<div class="location">at line 103</div>
<div class="location">at line 109</div>
<code> public Integer
<strong>calculateHeight</strong>(Integer $width, Integer $modulus = 1)</code>
</h3>
Expand Down Expand Up @@ -369,7 +387,7 @@ <h4>Return Value</h4>
</div>

<h3 id="method_create">
<div class="location">at line 145</div>
<div class="location">at line 151</div>
<code> static public <a href="../../FFMpeg/Coordinate/AspectRatio.html"><abbr title="FFMpeg\Coordinate\AspectRatio">AspectRatio</abbr></a>
<strong>create</strong>(<a href="../../FFMpeg/Coordinate/Dimension.html"><abbr title="FFMpeg\Coordinate\Dimension">Dimension</abbr></a> $dimension, Boolean $forceStandards = true)</code>
</h3>
Expand Down
14 changes: 10 additions & 4 deletions docs/source/API/API/FFMpeg/Coordinate/Point.html
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ <h2>Methods</h2>

</td>
<td class="last">
<a href="#method___construct">__construct</a>($x, $y)
<a href="#method___construct">__construct</a>($x, $y, $dynamic = false)
<p>
</p>
</td>
Expand Down Expand Up @@ -73,7 +73,7 @@ <h2>Details</h2>
<h3 id="method___construct">
<div class="location">at line 19</div>
<code> public
<strong>__construct</strong>($x, $y)</code>
<strong>__construct</strong>($x, $y, $dynamic = false)</code>
</h3>
<div class="details">
<p>
Expand All @@ -94,6 +94,12 @@ <h4>Parameters</h4>
<td></td>
<td>$y</td>
<td>
</td>
</tr>
<tr>
<td></td>
<td>$dynamic</td>
<td>
</td>
</tr>
</table>
Expand All @@ -105,7 +111,7 @@ <h4>Parameters</h4>
</div>

<h3 id="method_getX">
<div class="location">at line 28</div>
<div class="location">at line 33</div>
<code> public integer
<strong>getX</strong>()</code>
</h3>
Expand All @@ -132,7 +138,7 @@ <h4>Return Value</h4>
</div>

<h3 id="method_getY">
<div class="location">at line 36</div>
<div class="location">at line 41</div>
<code> public integer
<strong>getY</strong>()</code>
</h3>
Expand Down
82 changes: 82 additions & 0 deletions docs/source/API/API/FFMpeg/Coordinate/TimeCode.html
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,26 @@ <h2>Methods</h2>
<p>Creates timecode from number of seconds.</p>
</td>
<td></td>
</tr>
<tr>
<td class="type">
int
</td>
<td class="last">
<a href="#method_toSeconds">toSeconds</a>()
<p>Returns this timecode in seconds</p>
</td>
<td></td>
</tr>
<tr>
<td class="type">
bool
</td>
<td class="last">
<a href="#method_isAfter">isAfter</a>(<a href="../../FFMpeg/Coordinate/TimeCode.html"><abbr title="FFMpeg\Coordinate\TimeCode">TimeCode</abbr></a> $timecode)
<p>Helper function wether <code>$timecode</code> is after this one</p>
</td>
<td></td>
</tr>
</table>

Expand Down Expand Up @@ -222,6 +242,68 @@ <h4>Return Value</h4>



</div>
</div>

<h3 id="method_toSeconds">
<div class="location">at line 97</div>
<code> public int
<strong>toSeconds</strong>()</code>
</h3>
<div class="details">
<p>Returns this timecode in seconds</p>
<p>
</p>
<div class="tags">

<h4>Return Value</h4>

<table>
<tr>
<td>int</td>
<td>
</td>
</tr>
</table>



</div>
</div>

<h3 id="method_isAfter">
<div class="location">at line 115</div>
<code> public bool
<strong>isAfter</strong>(<a href="../../FFMpeg/Coordinate/TimeCode.html"><abbr title="FFMpeg\Coordinate\TimeCode">TimeCode</abbr></a> $timecode)</code>
</h3>
<div class="details">
<p>Helper function wether <code>$timecode</code> is after this one</p>
<p>
</p>
<div class="tags">
<h4>Parameters</h4>

<table>
<tr>
<td><a href="../../FFMpeg/Coordinate/TimeCode.html"><abbr title="FFMpeg\Coordinate\TimeCode">TimeCode</abbr></a></td>
<td>$timecode</td>
<td>The Timecode to compare</td>
</tr>
</table>


<h4>Return Value</h4>

<table>
<tr>
<td>bool</td>
<td>
</td>
</tr>
</table>



</div>
</div>

Expand Down