From 52b7ba1e606b0a2944c8c9111105c10fb1bef4e8 Mon Sep 17 00:00:00 2001 From: Romain Neutron Date: Fri, 15 Jun 2012 11:26:51 +0200 Subject: [PATCH] Update API doc --- docs/source/API/API/FFMpeg/FFMpeg.html | 81 ++++++++++++++++--- .../API/FFMpeg/Format/Video/DefaultVideo.html | 16 ++-- .../API/API/FFMpeg/Format/Video/Ogg.html | 45 ++++++++--- .../API/FFMpeg/Format/Video/Resamplable.html | 54 ++++++++++++- .../API/API/FFMpeg/Format/Video/WebM.html | 47 ++++++++--- .../API/API/FFMpeg/Format/Video/X264.html | 45 ++++++++--- docs/source/API/API/doc-index.html | 12 ++- docs/source/API/API/renderer.index | 2 +- docs/source/API/API/search_index.js | 4 +- 9 files changed, 247 insertions(+), 59 deletions(-) diff --git a/docs/source/API/API/FFMpeg/FFMpeg.html b/docs/source/API/API/FFMpeg/FFMpeg.html index 50c6b45..3ec44bb 100644 --- a/docs/source/API/API/FFMpeg/FFMpeg.html +++ b/docs/source/API/API/FFMpeg/FFMpeg.html @@ -66,6 +66,26 @@ + + + + setThreads($threads) +

+ + + + + + + + + getThreads() +

+ + + + + FFMpeg @@ -109,7 +129,7 @@ FFMpeg - encode(Audio $format, string $outputPathfile, integer $threads = 1) + encode(Audio $format, string $outputPathfile)

Encode the file to the specified format

@@ -150,7 +170,7 @@

-
at line 39
+
at line 40
public __destruct()

@@ -195,11 +215,51 @@ + + + +

+
at line 46
+ public + setThreads($threads) +

+
+

+

+
+

Parameters

+ + + + + + + +
$threads
+ + + + +
+
+ +

+
at line 57
+ public + getThreads() +

+
+

+

+
+ + +

-
at line 52
+
at line 69
public FFMpeg open(string $pathfile)

@@ -242,7 +302,7 @@

-
at line 72
+
at line 89
public FFMpeg setProber(FFProbe $prober)

@@ -276,7 +336,7 @@

-
at line 84
+
at line 101
public FFMpeg close()

@@ -300,7 +360,7 @@

-
at line 102
+
at line 119
public FFMpeg extractImage(integer $time, string $output)

@@ -352,9 +412,9 @@

-
at line 146
+
at line 162
public FFMpeg - encode(Audio $format, string $outputPathfile, integer $threads = 1) + encode(Audio $format, string $outputPathfile)

Encode the file to the specified format

@@ -372,11 +432,6 @@ string $outputPathfile The pathfile where to write - - - integer - $threads - The number of threads to use diff --git a/docs/source/API/API/FFMpeg/Format/Video/DefaultVideo.html b/docs/source/API/API/FFMpeg/Format/Video/DefaultVideo.html index 4a7988e..62d4f7e 100644 --- a/docs/source/API/API/FFMpeg/Format/Video/DefaultVideo.html +++ b/docs/source/API/API/FFMpeg/Format/Video/DefaultVideo.html @@ -556,7 +556,7 @@

-
at line 115
+
at line 120
public setResizeMode(string $mode)

@@ -590,7 +590,7 @@

-
at line 135
+
at line 140
public string getResizeMode()

@@ -614,7 +614,7 @@

-
at line 143
+
at line 148
public integer getFrameRate()

@@ -638,7 +638,7 @@

-
at line 155
+
at line 160
public setFrameRate(integer $frameRate)

@@ -672,7 +672,7 @@

-
at line 169
+
at line 174
public getVideoCodec()

@@ -687,7 +687,7 @@

-
at line 181
+
at line 186
public setVideoCodec(string $videoCodec)

@@ -721,7 +721,7 @@

-
at line 198
+
at line 203
public getGOPsize()

@@ -736,7 +736,7 @@

-
at line 210
+
at line 215
public setGOPsize(integer $GOPsize)

diff --git a/docs/source/API/API/FFMpeg/Format/Video/Ogg.html b/docs/source/API/API/FFMpeg/Format/Video/Ogg.html index ea50198..05f4008 100644 --- a/docs/source/API/API/FFMpeg/Format/Video/Ogg.html +++ b/docs/source/API/API/FFMpeg/Format/Video/Ogg.html @@ -176,6 +176,16 @@ + + + supportBFrames() +

{@inheritDoc}

+ + + + + + getAvailableAudioCodecs() @@ -325,7 +335,7 @@

-
in DefaultVideo at line 115
+
in DefaultVideo at line 120
public setResizeMode(string $mode)

@@ -359,7 +369,7 @@

-
in DefaultVideo at line 135
+
in DefaultVideo at line 140
public string getResizeMode()

@@ -383,7 +393,7 @@

-
in DefaultVideo at line 143
+
in DefaultVideo at line 148
public integer getFrameRate()

@@ -407,7 +417,7 @@

-
in DefaultVideo at line 155
+
in DefaultVideo at line 160
public setFrameRate(integer $frameRate)

@@ -441,7 +451,7 @@

-
in DefaultVideo at line 169
+
in DefaultVideo at line 174
public getVideoCodec()

@@ -456,7 +466,7 @@

-
in DefaultVideo at line 181
+
in DefaultVideo at line 186
public setVideoCodec(string $videoCodec)

@@ -490,7 +500,7 @@

-
in DefaultVideo at line 198
+
in DefaultVideo at line 203
public getGOPsize()

@@ -505,7 +515,7 @@

-
in DefaultVideo at line 210
+
in DefaultVideo at line 215
public setGOPsize(integer $GOPsize)

@@ -538,9 +548,24 @@ -

+

at line 27
public + supportBFrames() +

+
+

{@inheritDoc}

+

+
+ + + +
+
+ +

+
at line 35
+ public getAvailableAudioCodecs()

@@ -554,7 +579,7 @@

-
at line 35
+
at line 43
public getAvailableVideoCodecs()

diff --git a/docs/source/API/API/FFMpeg/Format/Video/Resamplable.html b/docs/source/API/API/FFMpeg/Format/Video/Resamplable.html index 8828385..7e01830 100644 --- a/docs/source/API/API/FFMpeg/Format/Video/Resamplable.html +++ b/docs/source/API/API/FFMpeg/Format/Video/Resamplable.html @@ -44,6 +44,16 @@

Returns the frame rate

+ + + + Boolean + + + supportBFrames() +

Returns true if the current format supports B-Frames

+ + @@ -84,8 +94,41 @@ +

+
at line 40
+ public Boolean + supportBFrames() +

+
+

Returns true if the current format supports B-Frames

+

+
+ +

Return Value

+ + + + + + +
Boolean
+ + + +

See also

+ + + + + + +
https://wikipedia.org/wiki/Video_compression_picture_types
+ +
+
+

-
at line 38
+
at line 49
public integer getGOPSize()

@@ -105,6 +148,15 @@ +

See also

+ + + + + + +
https://wikipedia.org/wiki/Group_of_pictures
+ diff --git a/docs/source/API/API/FFMpeg/Format/Video/WebM.html b/docs/source/API/API/FFMpeg/Format/Video/WebM.html index 4d4adce..a8dd8ed 100644 --- a/docs/source/API/API/FFMpeg/Format/Video/WebM.html +++ b/docs/source/API/API/FFMpeg/Format/Video/WebM.html @@ -176,6 +176,16 @@ + + + supportBFrames() +

{@inheritDoc}

+ + + + + + getExtraParams() @@ -335,7 +345,7 @@

-
in DefaultVideo at line 115
+
in DefaultVideo at line 120
public setResizeMode(string $mode)

@@ -369,7 +379,7 @@

-
in DefaultVideo at line 135
+
in DefaultVideo at line 140
public string getResizeMode()

@@ -393,7 +403,7 @@

-
in DefaultVideo at line 143
+
in DefaultVideo at line 148
public integer getFrameRate()

@@ -417,7 +427,7 @@

-
in DefaultVideo at line 155
+
in DefaultVideo at line 160
public setFrameRate(integer $frameRate)

@@ -451,7 +461,7 @@

-
in DefaultVideo at line 169
+
in DefaultVideo at line 174
public getVideoCodec()

@@ -466,7 +476,7 @@

-
in DefaultVideo at line 181
+
in DefaultVideo at line 186
public setVideoCodec(string $videoCodec)

@@ -500,7 +510,7 @@

-
in DefaultVideo at line 198
+
in DefaultVideo at line 203
public getGOPsize()

@@ -515,7 +525,7 @@

-
in DefaultVideo at line 210
+
in DefaultVideo at line 215
public setGOPsize(integer $GOPsize)

@@ -548,9 +558,24 @@ -

+

at line 27
public + supportBFrames() +

+
+

{@inheritDoc}

+

+
+ + + +
+
+ +

+
at line 35
+ public getExtraParams()

@@ -564,7 +589,7 @@

-
at line 35
+
at line 43
public getAvailableAudioCodecs()

@@ -579,7 +604,7 @@

-
at line 43
+
at line 51
public getAvailableVideoCodecs()

diff --git a/docs/source/API/API/FFMpeg/Format/Video/X264.html b/docs/source/API/API/FFMpeg/Format/Video/X264.html index 2c1fb11..6c54e84 100644 --- a/docs/source/API/API/FFMpeg/Format/Video/X264.html +++ b/docs/source/API/API/FFMpeg/Format/Video/X264.html @@ -176,6 +176,16 @@ + + + supportBFrames() +

{@inheritDoc}

+ + + + + + getAvailableAudioCodecs() @@ -325,7 +335,7 @@

-
in DefaultVideo at line 115
+
in DefaultVideo at line 120
public setResizeMode(string $mode)

@@ -359,7 +369,7 @@

-
in DefaultVideo at line 135
+
in DefaultVideo at line 140
public string getResizeMode()

@@ -383,7 +393,7 @@

-
in DefaultVideo at line 143
+
in DefaultVideo at line 148
public integer getFrameRate()

@@ -407,7 +417,7 @@

-
in DefaultVideo at line 155
+
in DefaultVideo at line 160
public setFrameRate(integer $frameRate)

@@ -441,7 +451,7 @@

-
in DefaultVideo at line 169
+
in DefaultVideo at line 174
public getVideoCodec()

@@ -456,7 +466,7 @@

-
in DefaultVideo at line 181
+
in DefaultVideo at line 186
public setVideoCodec(string $videoCodec)

@@ -490,7 +500,7 @@

-
in DefaultVideo at line 198
+
in DefaultVideo at line 203
public getGOPsize()

@@ -505,7 +515,7 @@

-
in DefaultVideo at line 210
+
in DefaultVideo at line 215
public setGOPsize(integer $GOPsize)

@@ -538,9 +548,24 @@ -

+

at line 27
public + supportBFrames() +

+
+

{@inheritDoc}

+

+
+ + + +
+
+ +

+
at line 35
+ public getAvailableAudioCodecs()

@@ -554,7 +579,7 @@

-
at line 35
+
at line 43
public getAvailableVideoCodecs()

diff --git a/docs/source/API/API/doc-index.html b/docs/source/API/API/doc-index.html index fe278fa..c4f6ee7 100644 --- a/docs/source/API/API/doc-index.html +++ b/docs/source/API/API/doc-index.html @@ -69,7 +69,8 @@
FFMpeg driver
FFProbeClass in namespace FFMpeg
FFProbe driver
FlacClass in namespace FFMpeg\Format\Audio
The Flac audio format

G

-
Audio::getKiloBitrate() — Method in class Audio
+
FFMpeg::getThreads() — Method in class FFMpeg
+
Audio::getKiloBitrate() — Method in class Audio
Get the kiloBitrate value
Audio::getExtraParams() — Method in class Audio
Give som extra parameters to add to ffmpeg commandline Parameters MUST be escaped
DefaultAudio::getExtraParams() — Method in class DefaultAudio
Returns extra parameters for the encoding
DefaultAudio::getAudioCodec() — Method in class DefaultAudio
@@ -123,7 +124,8 @@
The resamplable audio interface
ResamplableClass in namespace FFMpeg\Format\Video
The resamplable video interface
ResizableClass in namespace FFMpeg\Format\Video
The resizable video interface

S

-
FFMpeg::setProber() — Method in class FFMpeg
+
FFMpeg::setThreads() — Method in class FFMpeg
+
FFMpeg::setProber() — Method in class FFMpeg
Set a prober
DefaultAudio::setAudioCodec() — Method in class DefaultAudio
Set the audio codec, Should be in the available ones, otherwise an exception is thrown
DefaultAudio::setAudioSampleRate() — Method in class DefaultAudio
Set the audio sample rate
DefaultAudio::setKiloBitrate() — Method in class DefaultAudio
@@ -132,7 +134,11 @@
Set the resize mode
DefaultVideo::setFrameRate() — Method in class DefaultVideo
Set the framerate
DefaultVideo::setVideoCodec() — Method in class DefaultVideo
Set the video codec, Should be in the available ones, otherwise an exception is thrown
DefaultVideo::setGOPsize() — Method in class DefaultVideo
-
Set the GOP size

T

+
Set the GOP size
Ogg::supportBFrames() — Method in class Ogg
+
{@inheritDoc}
Resamplable::supportBFrames() — Method in class Resamplable
+
Returns true if the current format supports B-Frames
WebM::supportBFrames() — Method in class WebM
+
{@inheritDoc}
X264::supportBFrames() — Method in class X264
+
{@inheritDoc}

T

TranscodableClass in namespace FFMpeg\Format\Audio
TranscodableClass in namespace FFMpeg\Format\Video

V

diff --git a/docs/source/API/API/renderer.index b/docs/source/API/API/renderer.index index 5baddbf..d6960e4 100644 --- a/docs/source/API/API/renderer.index +++ b/docs/source/API/API/renderer.index @@ -1 +1 @@ -C:19:"Sami\Renderer\Index":2336:{a:3:{i:0;a:26:{s:23:"FFMpeg\AdapterInterface";s:40:"692055cd227655999c71a444af1aca35a74b4bef";s:13:"FFMpeg\Binary";s:40:"f8d36cb52f6907aca66bfb0d6c5a28f1c7c808ff";s:40:"FFMpeg\Exception\BinaryNotFoundException";s:40:"87f8f8a978534ffac0938c80140f53937be42b20";s:26:"FFMpeg\Exception\Exception";s:40:"f34b568cf514a3e72dd2f6b85ccb72985173fd04";s:41:"FFMpeg\Exception\InvalidArgumentException";s:40:"7c8fce1704e07a412e53455727b4fb3b76add274";s:31:"FFMpeg\Exception\LogicException";s:40:"312d742fa4413eb0bbc96cc9a5878c3a882a7d9e";s:33:"FFMpeg\Exception\RuntimeException";s:40:"4eb84ded48af1748aac5d58f5386c489fccd7b41";s:13:"FFMpeg\FFMpeg";s:40:"c287f9e4cd23a46daa1258ec1effb1e0c021ab93";s:14:"FFMpeg\FFProbe";s:40:"61d111513afc0ab1b113c679951213f9b92edf01";s:19:"FFMpeg\Format\Audio";s:40:"de3bd45cfbe199120004b172937c2424519c2ed0";s:32:"FFMpeg\Format\Audio\DefaultAudio";s:40:"046d63981e0d45fe78ae0218504085aded8e4465";s:24:"FFMpeg\Format\Audio\Flac";s:40:"dd42337e79f87bf1e65107553d718ddd9620fdaf";s:31:"FFMpeg\Format\Audio\Interactive";s:40:"c690469cd7aff29b71406326c0895c0669d02855";s:23:"FFMpeg\Format\Audio\Mp3";s:40:"0636d17bef3adb55c8ed0ab0ef2c855bf62321db";s:31:"FFMpeg\Format\Audio\Resamplable";s:40:"24be9dee2b1bf9a8d658fdf0d9a45866f1763aa1";s:32:"FFMpeg\Format\Audio\Transcodable";s:40:"bbf9a19a6dfb3c305826cc7922aab24a9c03afd1";s:23:"FFMpeg\Format\Dimension";s:40:"cdcd388588cee5c6886fba118f358c9abe36f00a";s:19:"FFMpeg\Format\Video";s:40:"eca501be9309a062e98afcb5d68a4372a39ebc63";s:32:"FFMpeg\Format\Video\DefaultVideo";s:40:"d6394d85ac5bf1a5fea22995014a21926051cccd";s:31:"FFMpeg\Format\Video\Interactive";s:40:"36c13c440c19994100f1d442ac36079ef65052c7";s:23:"FFMpeg\Format\Video\Ogg";s:40:"ce478b19a35f29852ddb4fc2bc32e1f6c63e4764";s:31:"FFMpeg\Format\Video\Resamplable";s:40:"d84d06719d9a4b1a9693a0f9617e3ddce43e379a";s:29:"FFMpeg\Format\Video\Resizable";s:40:"500e975f6a744fdcbb15c1012598025b3699c877";s:32:"FFMpeg\Format\Video\Transcodable";s:40:"c9a038aabc4e2f3ca993b65851a215e6ce3f93bd";s:24:"FFMpeg\Format\Video\WebM";s:40:"b1c9fe2408d2a10b3c4fa86fa7201cc7fa1cbd6c";s:24:"FFMpeg\Format\Video\X264";s:40:"00f10c808abe7abf914b4c40bdfaa493db24cc05";}i:1;a:1:{i:0;s:6:"master";}i:2;a:5:{i:0;s:6:"FFMpeg";i:1;s:16:"FFMpeg\Exception";i:2;s:13:"FFMpeg\Format";i:3;s:19:"FFMpeg\Format\Audio";i:4;s:19:"FFMpeg\Format\Video";}}} \ No newline at end of file +C:19:"Sami\Renderer\Index":2336:{a:3:{i:0;a:26:{s:23:"FFMpeg\AdapterInterface";s:40:"692055cd227655999c71a444af1aca35a74b4bef";s:13:"FFMpeg\Binary";s:40:"f8d36cb52f6907aca66bfb0d6c5a28f1c7c808ff";s:40:"FFMpeg\Exception\BinaryNotFoundException";s:40:"87f8f8a978534ffac0938c80140f53937be42b20";s:26:"FFMpeg\Exception\Exception";s:40:"f34b568cf514a3e72dd2f6b85ccb72985173fd04";s:41:"FFMpeg\Exception\InvalidArgumentException";s:40:"7c8fce1704e07a412e53455727b4fb3b76add274";s:31:"FFMpeg\Exception\LogicException";s:40:"312d742fa4413eb0bbc96cc9a5878c3a882a7d9e";s:33:"FFMpeg\Exception\RuntimeException";s:40:"4eb84ded48af1748aac5d58f5386c489fccd7b41";s:13:"FFMpeg\FFMpeg";s:40:"905f049ce59818433a6cf2a5d04a18b07b97a033";s:14:"FFMpeg\FFProbe";s:40:"f87511d2e814fb6babca5fe51b312fa90a1f56e9";s:19:"FFMpeg\Format\Audio";s:40:"de3bd45cfbe199120004b172937c2424519c2ed0";s:32:"FFMpeg\Format\Audio\DefaultAudio";s:40:"046d63981e0d45fe78ae0218504085aded8e4465";s:24:"FFMpeg\Format\Audio\Flac";s:40:"dd42337e79f87bf1e65107553d718ddd9620fdaf";s:31:"FFMpeg\Format\Audio\Interactive";s:40:"c690469cd7aff29b71406326c0895c0669d02855";s:23:"FFMpeg\Format\Audio\Mp3";s:40:"0636d17bef3adb55c8ed0ab0ef2c855bf62321db";s:31:"FFMpeg\Format\Audio\Resamplable";s:40:"24be9dee2b1bf9a8d658fdf0d9a45866f1763aa1";s:32:"FFMpeg\Format\Audio\Transcodable";s:40:"bbf9a19a6dfb3c305826cc7922aab24a9c03afd1";s:23:"FFMpeg\Format\Dimension";s:40:"fe4fb8353f1a170ee8d47b02d1d1191ad1da39c3";s:19:"FFMpeg\Format\Video";s:40:"eca501be9309a062e98afcb5d68a4372a39ebc63";s:32:"FFMpeg\Format\Video\DefaultVideo";s:40:"e84cc619bf30ee9793f61478e3812403c30394af";s:31:"FFMpeg\Format\Video\Interactive";s:40:"36c13c440c19994100f1d442ac36079ef65052c7";s:23:"FFMpeg\Format\Video\Ogg";s:40:"21a4630b36a411a622ad99201545e3d7fcfa75e6";s:31:"FFMpeg\Format\Video\Resamplable";s:40:"b3af34bb13a73f82994589fa99c5ed0d647f320a";s:29:"FFMpeg\Format\Video\Resizable";s:40:"500e975f6a744fdcbb15c1012598025b3699c877";s:32:"FFMpeg\Format\Video\Transcodable";s:40:"c9a038aabc4e2f3ca993b65851a215e6ce3f93bd";s:24:"FFMpeg\Format\Video\WebM";s:40:"162abdf0e0e688a8e5a0cc53cfeddde869a302b1";s:24:"FFMpeg\Format\Video\X264";s:40:"c235f5ff052386b78fe42c6b10cdfecb3a655394";}i:1;a:1:{i:0;s:6:"master";}i:2;a:5:{i:0;s:6:"FFMpeg";i:1;s:16:"FFMpeg\Exception";i:2;s:13:"FFMpeg\Format";i:3;s:19:"FFMpeg\Format\Audio";i:4;s:19:"FFMpeg\Format\Video";}}} \ No newline at end of file diff --git a/docs/source/API/API/search_index.js b/docs/source/API/API/search_index.js index c16439f..962b59d 100644 --- a/docs/source/API/API/search_index.js +++ b/docs/source/API/API/search_index.js @@ -1,7 +1,7 @@ var search_data = { 'index': { - 'searchIndex': ["ffmpeg","ffmpeg\\exception","ffmpeg\\format","ffmpeg\\format\\audio","ffmpeg\\format\\video","ffmpeg\\adapterinterface","ffmpeg\\binary","ffmpeg\\exception\\binarynotfoundexception","ffmpeg\\exception\\exception","ffmpeg\\exception\\invalidargumentexception","ffmpeg\\exception\\logicexception","ffmpeg\\exception\\runtimeexception","ffmpeg\\ffmpeg","ffmpeg\\ffprobe","ffmpeg\\format\\audio","ffmpeg\\format\\audio\\defaultaudio","ffmpeg\\format\\audio\\flac","ffmpeg\\format\\audio\\interactive","ffmpeg\\format\\audio\\mp3","ffmpeg\\format\\audio\\resamplable","ffmpeg\\format\\audio\\transcodable","ffmpeg\\format\\dimension","ffmpeg\\format\\video","ffmpeg\\format\\video\\defaultvideo","ffmpeg\\format\\video\\interactive","ffmpeg\\format\\video\\ogg","ffmpeg\\format\\video\\resamplable","ffmpeg\\format\\video\\resizable","ffmpeg\\format\\video\\transcodable","ffmpeg\\format\\video\\webm","ffmpeg\\format\\video\\x264","ffmpeg\\adapterinterface::load","ffmpeg\\binary::__construct","ffmpeg\\binary::__destruct","ffmpeg\\binary::load","ffmpeg\\ffmpeg::__destruct","ffmpeg\\ffmpeg::open","ffmpeg\\ffmpeg::setprober","ffmpeg\\ffmpeg::close","ffmpeg\\ffmpeg::extractimage","ffmpeg\\ffmpeg::encode","ffmpeg\\ffprobe::probeformat","ffmpeg\\ffprobe::probestreams","ffmpeg\\format\\audio::getkilobitrate","ffmpeg\\format\\audio::getextraparams","ffmpeg\\format\\audio\\defaultaudio::getextraparams","ffmpeg\\format\\audio\\defaultaudio::getaudiocodec","ffmpeg\\format\\audio\\defaultaudio::setaudiocodec","ffmpeg\\format\\audio\\defaultaudio::getaudiosamplerate","ffmpeg\\format\\audio\\defaultaudio::setaudiosamplerate","ffmpeg\\format\\audio\\defaultaudio::getkilobitrate","ffmpeg\\format\\audio\\defaultaudio::setkilobitrate","ffmpeg\\format\\audio\\flac::getavailableaudiocodecs","ffmpeg\\format\\audio\\interactive::getavailableaudiocodecs","ffmpeg\\format\\audio\\mp3::getavailableaudiocodecs","ffmpeg\\format\\audio\\resamplable::getaudiosamplerate","ffmpeg\\format\\audio\\transcodable::getaudiocodec","ffmpeg\\format\\dimension::__construct","ffmpeg\\format\\dimension::getwidth","ffmpeg\\format\\dimension::getheight","ffmpeg\\format\\video\\defaultvideo::getwidth","ffmpeg\\format\\video\\defaultvideo::getheight","ffmpeg\\format\\video\\defaultvideo::setdimensions","ffmpeg\\format\\video\\defaultvideo::getcomputeddimensions","ffmpeg\\format\\video\\defaultvideo::setresizemode","ffmpeg\\format\\video\\defaultvideo::getresizemode","ffmpeg\\format\\video\\defaultvideo::getframerate","ffmpeg\\format\\video\\defaultvideo::setframerate","ffmpeg\\format\\video\\defaultvideo::getvideocodec","ffmpeg\\format\\video\\defaultvideo::setvideocodec","ffmpeg\\format\\video\\defaultvideo::getgopsize","ffmpeg\\format\\video\\defaultvideo::setgopsize","ffmpeg\\format\\video\\interactive::getavailablevideocodecs","ffmpeg\\format\\video\\ogg::getavailableaudiocodecs","ffmpeg\\format\\video\\ogg::getavailablevideocodecs","ffmpeg\\format\\video\\resamplable::getframerate","ffmpeg\\format\\video\\resamplable::getgopsize","ffmpeg\\format\\video\\resizable::getcomputeddimensions","ffmpeg\\format\\video\\transcodable::getvideocodec","ffmpeg\\format\\video\\webm::getextraparams","ffmpeg\\format\\video\\webm::getavailableaudiocodecs","ffmpeg\\format\\video\\webm::getavailablevideocodecs","ffmpeg\\format\\video\\x264::getavailableaudiocodecs","ffmpeg\\format\\video\\x264::getavailablevideocodecs"], - 'info': [["FFMpeg","","FFMpeg.html","","",3],["FFMpeg\\Exception","","FFMpeg\/Exception.html","","",3],["FFMpeg\\Format","","FFMpeg\/Format.html","","",3],["FFMpeg\\Format\\Audio","","FFMpeg\/Format\/Audio.html","","",3],["FFMpeg\\Format\\Video","","FFMpeg\/Format\/Video.html","","",3],["AdapterInterface","FFMpeg","FFMpeg\/AdapterInterface.html","","FFMpeg Adapter interface",1],["Binary","FFMpeg","FFMpeg\/Binary.html","","Binary abstract class",1],["BinaryNotFoundException","FFMpeg\\Exception","FFMpeg\/Exception\/BinaryNotFoundException.html"," < Exception","",1],["Exception","FFMpeg\\Exception","FFMpeg\/Exception\/Exception.html","","",1],["InvalidArgumentException","FFMpeg\\Exception","FFMpeg\/Exception\/InvalidArgumentException.html"," < InvalidArgumentException","",1],["LogicException","FFMpeg\\Exception","FFMpeg\/Exception\/LogicException.html"," < LogicException","",1],["RuntimeException","FFMpeg\\Exception","FFMpeg\/Exception\/RuntimeException.html"," < RuntimeException","",1],["FFMpeg","FFMpeg","FFMpeg\/FFMpeg.html"," < Binary","FFMpeg driver",1],["FFProbe","FFMpeg","FFMpeg\/FFProbe.html"," < Binary","FFProbe driver",1],["Audio","FFMpeg\\Format","FFMpeg\/Format\/Audio.html","","The base audio interface",1],["DefaultAudio","FFMpeg\\Format\\Audio","FFMpeg\/Format\/Audio\/DefaultAudio.html","","The abstract default Audio format",1],["Flac","FFMpeg\\Format\\Audio","FFMpeg\/Format\/Audio\/Flac.html"," < DefaultAudio","The Flac audio format",1],["Interactive","FFMpeg\\Format\\Audio","FFMpeg\/Format\/Audio\/Interactive.html","","The interactive audio interface.",1],["Mp3","FFMpeg\\Format\\Audio","FFMpeg\/Format\/Audio\/Mp3.html"," < DefaultAudio","The MP3 audio format",1],["Resamplable","FFMpeg\\Format\\Audio","FFMpeg\/Format\/Audio\/Resamplable.html","","The resamplable audio interface",1],["Transcodable","FFMpeg\\Format\\Audio","FFMpeg\/Format\/Audio\/Transcodable.html","","",1],["Dimension","FFMpeg\\Format","FFMpeg\/Format\/Dimension.html","","Dimension object, used for manipulating width and height",1],["Video","FFMpeg\\Format","FFMpeg\/Format\/Video.html","","The base video interface",1],["DefaultVideo","FFMpeg\\Format\\Video","FFMpeg\/Format\/Video\/DefaultVideo.html"," < DefaultAudio","The abstract default Video format",1],["Interactive","FFMpeg\\Format\\Video","FFMpeg\/Format\/Video\/Interactive.html","","The interactive video interface.",1],["Ogg","FFMpeg\\Format\\Video","FFMpeg\/Format\/Video\/Ogg.html"," < DefaultVideo","The Ogg video format",1],["Resamplable","FFMpeg\\Format\\Video","FFMpeg\/Format\/Video\/Resamplable.html","","The resamplable video interface",1],["Resizable","FFMpeg\\Format\\Video","FFMpeg\/Format\/Video\/Resizable.html","","The resizable video interface",1],["Transcodable","FFMpeg\\Format\\Video","FFMpeg\/Format\/Video\/Transcodable.html","","",1],["WebM","FFMpeg\\Format\\Video","FFMpeg\/Format\/Video\/WebM.html"," < DefaultVideo","The WebM video format",1],["X264","FFMpeg\\Format\\Video","FFMpeg\/Format\/Video\/X264.html"," < DefaultVideo","The X264 video format",1],["AdapterInterface::load","FFMpeg\\AdapterInterface","FFMpeg\/AdapterInterface.html#method_load","(Logger<\/abbr> $logger)","Loads the adapter",2],["Binary::__construct","FFMpeg\\Binary","FFMpeg\/Binary.html#method___construct","(type<\/abbr> $binary, Logger<\/abbr> $logger)","Binary constructor",2],["Binary::__destruct","FFMpeg\\Binary","FFMpeg\/Binary.html#method___destruct","()","Destructor",2],["Binary::load","FFMpeg\\Binary","FFMpeg\/Binary.html#method_load","(Logger<\/abbr> $logger)","Loads the adapter",2],["FFMpeg::__destruct","FFMpeg\\FFMpeg","FFMpeg\/FFMpeg.html#method___destruct","()","Destructor",2],["FFMpeg::open","FFMpeg\\FFMpeg","FFMpeg\/FFMpeg.html#method_open","(string $pathfile)","Opens a file in order to be processed",2],["FFMpeg::setProber","FFMpeg\\FFMpeg","FFMpeg\/FFMpeg.html#method_setProber","(FFProbe<\/abbr><\/a> $prober)","Set a prober",2],["FFMpeg::close","FFMpeg\\FFMpeg","FFMpeg\/FFMpeg.html#method_close","()","Close a file",2],["FFMpeg::extractImage","FFMpeg\\FFMpeg","FFMpeg\/FFMpeg.html#method_extractImage","(integer $time, string $output)","Extract an image from a media file",2],["FFMpeg::encode","FFMpeg\\FFMpeg","FFMpeg\/FFMpeg.html#method_encode","(Audio<\/abbr><\/a> $format, string $outputPathfile, integer $threads = 1)","Encode the file to the specified format",2],["FFProbe::probeFormat","FFMpeg\\FFProbe","FFMpeg\/FFProbe.html#method_probeFormat","(string $pathfile)","Probe the format of a given file",2],["FFProbe::probeStreams","FFMpeg\\FFProbe","FFMpeg\/FFProbe.html#method_probeStreams","(string $pathfile)","Probe the streams contained in a given file",2],["Audio::getKiloBitrate","FFMpeg\\Format\\Audio","FFMpeg\/Format\/Audio.html#method_getKiloBitrate","()","Get the kiloBitrate value",2],["Audio::getExtraParams","FFMpeg\\Format\\Audio","FFMpeg\/Format\/Audio.html#method_getExtraParams","()","Give som extra parameters to add to ffmpeg commandline",2],["DefaultAudio::getExtraParams","FFMpeg\\Format\\Audio\\DefaultAudio","FFMpeg\/Format\/Audio\/DefaultAudio.html#method_getExtraParams","()","Returns extra parameters for the encoding",2],["DefaultAudio::getAudioCodec","FFMpeg\\Format\\Audio\\DefaultAudio","FFMpeg\/Format\/Audio\/DefaultAudio.html#method_getAudioCodec","()","{@inheritdoc}",2],["DefaultAudio::setAudioCodec","FFMpeg\\Format\\Audio\\DefaultAudio","FFMpeg\/Format\/Audio\/DefaultAudio.html#method_setAudioCodec","(string $audioCodec)","Set the audio codec, Should be in the available ones,",2],["DefaultAudio::getAudioSampleRate","FFMpeg\\Format\\Audio\\DefaultAudio","FFMpeg\/Format\/Audio\/DefaultAudio.html#method_getAudioSampleRate","()","Get the audio sample rate",2],["DefaultAudio::setAudioSampleRate","FFMpeg\\Format\\Audio\\DefaultAudio","FFMpeg\/Format\/Audio\/DefaultAudio.html#method_setAudioSampleRate","(integer $audioSampleRate)","Set the audio sample rate",2],["DefaultAudio::getKiloBitrate","FFMpeg\\Format\\Audio\\DefaultAudio","FFMpeg\/Format\/Audio\/DefaultAudio.html#method_getKiloBitrate","()","{@inheritdoc}",2],["DefaultAudio::setKiloBitrate","FFMpeg\\Format\\Audio\\DefaultAudio","FFMpeg\/Format\/Audio\/DefaultAudio.html#method_setKiloBitrate","(int $kiloBitrate)","Set the kiloBitrate value",2],["Flac::getAvailableAudioCodecs","FFMpeg\\Format\\Audio\\Flac","FFMpeg\/Format\/Audio\/Flac.html#method_getAvailableAudioCodecs","()","{@inheritDoc}",2],["Interactive::getAvailableAudioCodecs","FFMpeg\\Format\\Audio\\Interactive","FFMpeg\/Format\/Audio\/Interactive.html#method_getAvailableAudioCodecs","()","Returns the list of available audio codecs for this",2],["Mp3::getAvailableAudioCodecs","FFMpeg\\Format\\Audio\\Mp3","FFMpeg\/Format\/Audio\/Mp3.html#method_getAvailableAudioCodecs","()","{@inheritDoc}",2],["Resamplable::getAudioSampleRate","FFMpeg\\Format\\Audio\\Resamplable","FFMpeg\/Format\/Audio\/Resamplable.html#method_getAudioSampleRate","()","Get the audio sample rate",2],["Transcodable::getAudioCodec","FFMpeg\\Format\\Audio\\Transcodable","FFMpeg\/Format\/Audio\/Transcodable.html#method_getAudioCodec","()","Returns the audio codec",2],["Dimension::__construct","FFMpeg\\Format\\Dimension","FFMpeg\/Format\/Dimension.html#method___construct","(integer $width, integer $height)","Constructor",2],["Dimension::getWidth","FFMpeg\\Format\\Dimension","FFMpeg\/Format\/Dimension.html#method_getWidth","()","Return width",2],["Dimension::getHeight","FFMpeg\\Format\\Dimension","FFMpeg\/Format\/Dimension.html#method_getHeight","()","Return height",2],["DefaultVideo::getWidth","FFMpeg\\Format\\Video\\DefaultVideo","FFMpeg\/Format\/Video\/DefaultVideo.html#method_getWidth","()","Returns the width setting.",2],["DefaultVideo::getHeight","FFMpeg\\Format\\Video\\DefaultVideo","FFMpeg\/Format\/Video\/DefaultVideo.html#method_getHeight","()","Returns the height setting The return of this method",2],["DefaultVideo::setDimensions","FFMpeg\\Format\\Video\\DefaultVideo","FFMpeg\/Format\/Video\/DefaultVideo.html#method_setDimensions","(integer $width, integer $height)","Set the dimensions",2],["DefaultVideo::getComputedDimensions","FFMpeg\\Format\\Video\\DefaultVideo","FFMpeg\/Format\/Video\/DefaultVideo.html#method_getComputedDimensions","(integer $originalWidth, integer $originalHeight)","{@inheritdoc)",2],["DefaultVideo::setResizeMode","FFMpeg\\Format\\Video\\DefaultVideo","FFMpeg\/Format\/Video\/DefaultVideo.html#method_setResizeMode","(string $mode)","Set the resize mode",2],["DefaultVideo::getResizeMode","FFMpeg\\Format\\Video\\DefaultVideo","FFMpeg\/Format\/Video\/DefaultVideo.html#method_getResizeMode","()","Get the current resize mode name",2],["DefaultVideo::getFrameRate","FFMpeg\\Format\\Video\\DefaultVideo","FFMpeg\/Format\/Video\/DefaultVideo.html#method_getFrameRate","()","Returns the frame rate",2],["DefaultVideo::setFrameRate","FFMpeg\\Format\\Video\\DefaultVideo","FFMpeg\/Format\/Video\/DefaultVideo.html#method_setFrameRate","(integer $frameRate)","Set the framerate",2],["DefaultVideo::getVideoCodec","FFMpeg\\Format\\Video\\DefaultVideo","FFMpeg\/Format\/Video\/DefaultVideo.html#method_getVideoCodec","()","{@inheritdoc}",2],["DefaultVideo::setVideoCodec","FFMpeg\\Format\\Video\\DefaultVideo","FFMpeg\/Format\/Video\/DefaultVideo.html#method_setVideoCodec","(string $videoCodec)","Set the video codec, Should be in the available ones,",2],["DefaultVideo::getGOPsize","FFMpeg\\Format\\Video\\DefaultVideo","FFMpeg\/Format\/Video\/DefaultVideo.html#method_getGOPsize","()","{@inheritdoc}",2],["DefaultVideo::setGOPsize","FFMpeg\\Format\\Video\\DefaultVideo","FFMpeg\/Format\/Video\/DefaultVideo.html#method_setGOPsize","(integer $GOPsize)","Set the GOP size",2],["Interactive::getAvailableVideoCodecs","FFMpeg\\Format\\Video\\Interactive","FFMpeg\/Format\/Video\/Interactive.html#method_getAvailableVideoCodecs","()","Returns the list of available video codecs for this",2],["Ogg::getAvailableAudioCodecs","FFMpeg\\Format\\Video\\Ogg","FFMpeg\/Format\/Video\/Ogg.html#method_getAvailableAudioCodecs","()","{@inheritDoc}",2],["Ogg::getAvailableVideoCodecs","FFMpeg\\Format\\Video\\Ogg","FFMpeg\/Format\/Video\/Ogg.html#method_getAvailableVideoCodecs","()","{@inheritDoc}",2],["Resamplable::getFrameRate","FFMpeg\\Format\\Video\\Resamplable","FFMpeg\/Format\/Video\/Resamplable.html#method_getFrameRate","()","Returns the frame rate",2],["Resamplable::getGOPSize","FFMpeg\\Format\\Video\\Resamplable","FFMpeg\/Format\/Video\/Resamplable.html#method_getGOPSize","()","Returns the GOP size",2],["Resizable::getComputedDimensions","FFMpeg\\Format\\Video\\Resizable","FFMpeg\/Format\/Video\/Resizable.html#method_getComputedDimensions","(integer $originalWidth, integer $originalHeight)","Returns the computed dimensions for the resize, after",2],["Transcodable::getVideoCodec","FFMpeg\\Format\\Video\\Transcodable","FFMpeg\/Format\/Video\/Transcodable.html#method_getVideoCodec","()","Returns the video codec",2],["WebM::getExtraParams","FFMpeg\\Format\\Video\\WebM","FFMpeg\/Format\/Video\/WebM.html#method_getExtraParams","()","{@inheritDoc}",2],["WebM::getAvailableAudioCodecs","FFMpeg\\Format\\Video\\WebM","FFMpeg\/Format\/Video\/WebM.html#method_getAvailableAudioCodecs","()","{@inheritDoc}",2],["WebM::getAvailableVideoCodecs","FFMpeg\\Format\\Video\\WebM","FFMpeg\/Format\/Video\/WebM.html#method_getAvailableVideoCodecs","()","{@inheritDoc}",2],["X264::getAvailableAudioCodecs","FFMpeg\\Format\\Video\\X264","FFMpeg\/Format\/Video\/X264.html#method_getAvailableAudioCodecs","()","{@inheritDoc}",2],["X264::getAvailableVideoCodecs","FFMpeg\\Format\\Video\\X264","FFMpeg\/Format\/Video\/X264.html#method_getAvailableVideoCodecs","()","{@inheritDoc}",2]] + 'searchIndex': ["ffmpeg","ffmpeg\\exception","ffmpeg\\format","ffmpeg\\format\\audio","ffmpeg\\format\\video","ffmpeg\\adapterinterface","ffmpeg\\binary","ffmpeg\\exception\\binarynotfoundexception","ffmpeg\\exception\\exception","ffmpeg\\exception\\invalidargumentexception","ffmpeg\\exception\\logicexception","ffmpeg\\exception\\runtimeexception","ffmpeg\\ffmpeg","ffmpeg\\ffprobe","ffmpeg\\format\\audio","ffmpeg\\format\\audio\\defaultaudio","ffmpeg\\format\\audio\\flac","ffmpeg\\format\\audio\\interactive","ffmpeg\\format\\audio\\mp3","ffmpeg\\format\\audio\\resamplable","ffmpeg\\format\\audio\\transcodable","ffmpeg\\format\\dimension","ffmpeg\\format\\video","ffmpeg\\format\\video\\defaultvideo","ffmpeg\\format\\video\\interactive","ffmpeg\\format\\video\\ogg","ffmpeg\\format\\video\\resamplable","ffmpeg\\format\\video\\resizable","ffmpeg\\format\\video\\transcodable","ffmpeg\\format\\video\\webm","ffmpeg\\format\\video\\x264","ffmpeg\\adapterinterface::load","ffmpeg\\binary::__construct","ffmpeg\\binary::__destruct","ffmpeg\\binary::load","ffmpeg\\ffmpeg::__destruct","ffmpeg\\ffmpeg::setthreads","ffmpeg\\ffmpeg::getthreads","ffmpeg\\ffmpeg::open","ffmpeg\\ffmpeg::setprober","ffmpeg\\ffmpeg::close","ffmpeg\\ffmpeg::extractimage","ffmpeg\\ffmpeg::encode","ffmpeg\\ffprobe::probeformat","ffmpeg\\ffprobe::probestreams","ffmpeg\\format\\audio::getkilobitrate","ffmpeg\\format\\audio::getextraparams","ffmpeg\\format\\audio\\defaultaudio::getextraparams","ffmpeg\\format\\audio\\defaultaudio::getaudiocodec","ffmpeg\\format\\audio\\defaultaudio::setaudiocodec","ffmpeg\\format\\audio\\defaultaudio::getaudiosamplerate","ffmpeg\\format\\audio\\defaultaudio::setaudiosamplerate","ffmpeg\\format\\audio\\defaultaudio::getkilobitrate","ffmpeg\\format\\audio\\defaultaudio::setkilobitrate","ffmpeg\\format\\audio\\flac::getavailableaudiocodecs","ffmpeg\\format\\audio\\interactive::getavailableaudiocodecs","ffmpeg\\format\\audio\\mp3::getavailableaudiocodecs","ffmpeg\\format\\audio\\resamplable::getaudiosamplerate","ffmpeg\\format\\audio\\transcodable::getaudiocodec","ffmpeg\\format\\dimension::__construct","ffmpeg\\format\\dimension::getwidth","ffmpeg\\format\\dimension::getheight","ffmpeg\\format\\video\\defaultvideo::getwidth","ffmpeg\\format\\video\\defaultvideo::getheight","ffmpeg\\format\\video\\defaultvideo::setdimensions","ffmpeg\\format\\video\\defaultvideo::getcomputeddimensions","ffmpeg\\format\\video\\defaultvideo::setresizemode","ffmpeg\\format\\video\\defaultvideo::getresizemode","ffmpeg\\format\\video\\defaultvideo::getframerate","ffmpeg\\format\\video\\defaultvideo::setframerate","ffmpeg\\format\\video\\defaultvideo::getvideocodec","ffmpeg\\format\\video\\defaultvideo::setvideocodec","ffmpeg\\format\\video\\defaultvideo::getgopsize","ffmpeg\\format\\video\\defaultvideo::setgopsize","ffmpeg\\format\\video\\interactive::getavailablevideocodecs","ffmpeg\\format\\video\\ogg::supportbframes","ffmpeg\\format\\video\\ogg::getavailableaudiocodecs","ffmpeg\\format\\video\\ogg::getavailablevideocodecs","ffmpeg\\format\\video\\resamplable::getframerate","ffmpeg\\format\\video\\resamplable::supportbframes","ffmpeg\\format\\video\\resamplable::getgopsize","ffmpeg\\format\\video\\resizable::getcomputeddimensions","ffmpeg\\format\\video\\transcodable::getvideocodec","ffmpeg\\format\\video\\webm::supportbframes","ffmpeg\\format\\video\\webm::getextraparams","ffmpeg\\format\\video\\webm::getavailableaudiocodecs","ffmpeg\\format\\video\\webm::getavailablevideocodecs","ffmpeg\\format\\video\\x264::supportbframes","ffmpeg\\format\\video\\x264::getavailableaudiocodecs","ffmpeg\\format\\video\\x264::getavailablevideocodecs"], + 'info': [["FFMpeg","","FFMpeg.html","","",3],["FFMpeg\\Exception","","FFMpeg\/Exception.html","","",3],["FFMpeg\\Format","","FFMpeg\/Format.html","","",3],["FFMpeg\\Format\\Audio","","FFMpeg\/Format\/Audio.html","","",3],["FFMpeg\\Format\\Video","","FFMpeg\/Format\/Video.html","","",3],["AdapterInterface","FFMpeg","FFMpeg\/AdapterInterface.html","","FFMpeg Adapter interface",1],["Binary","FFMpeg","FFMpeg\/Binary.html","","Binary abstract class",1],["BinaryNotFoundException","FFMpeg\\Exception","FFMpeg\/Exception\/BinaryNotFoundException.html"," < Exception","",1],["Exception","FFMpeg\\Exception","FFMpeg\/Exception\/Exception.html","","",1],["InvalidArgumentException","FFMpeg\\Exception","FFMpeg\/Exception\/InvalidArgumentException.html"," < InvalidArgumentException","",1],["LogicException","FFMpeg\\Exception","FFMpeg\/Exception\/LogicException.html"," < LogicException","",1],["RuntimeException","FFMpeg\\Exception","FFMpeg\/Exception\/RuntimeException.html"," < RuntimeException","",1],["FFMpeg","FFMpeg","FFMpeg\/FFMpeg.html"," < Binary","FFMpeg driver",1],["FFProbe","FFMpeg","FFMpeg\/FFProbe.html"," < Binary","FFProbe driver",1],["Audio","FFMpeg\\Format","FFMpeg\/Format\/Audio.html","","The base audio interface",1],["DefaultAudio","FFMpeg\\Format\\Audio","FFMpeg\/Format\/Audio\/DefaultAudio.html","","The abstract default Audio format",1],["Flac","FFMpeg\\Format\\Audio","FFMpeg\/Format\/Audio\/Flac.html"," < DefaultAudio","The Flac audio format",1],["Interactive","FFMpeg\\Format\\Audio","FFMpeg\/Format\/Audio\/Interactive.html","","The interactive audio interface.",1],["Mp3","FFMpeg\\Format\\Audio","FFMpeg\/Format\/Audio\/Mp3.html"," < DefaultAudio","The MP3 audio format",1],["Resamplable","FFMpeg\\Format\\Audio","FFMpeg\/Format\/Audio\/Resamplable.html","","The resamplable audio interface",1],["Transcodable","FFMpeg\\Format\\Audio","FFMpeg\/Format\/Audio\/Transcodable.html","","",1],["Dimension","FFMpeg\\Format","FFMpeg\/Format\/Dimension.html","","Dimension object, used for manipulating width and height",1],["Video","FFMpeg\\Format","FFMpeg\/Format\/Video.html","","The base video interface",1],["DefaultVideo","FFMpeg\\Format\\Video","FFMpeg\/Format\/Video\/DefaultVideo.html"," < DefaultAudio","The abstract default Video format",1],["Interactive","FFMpeg\\Format\\Video","FFMpeg\/Format\/Video\/Interactive.html","","The interactive video interface.",1],["Ogg","FFMpeg\\Format\\Video","FFMpeg\/Format\/Video\/Ogg.html"," < DefaultVideo","The Ogg video format",1],["Resamplable","FFMpeg\\Format\\Video","FFMpeg\/Format\/Video\/Resamplable.html","","The resamplable video interface",1],["Resizable","FFMpeg\\Format\\Video","FFMpeg\/Format\/Video\/Resizable.html","","The resizable video interface",1],["Transcodable","FFMpeg\\Format\\Video","FFMpeg\/Format\/Video\/Transcodable.html","","",1],["WebM","FFMpeg\\Format\\Video","FFMpeg\/Format\/Video\/WebM.html"," < DefaultVideo","The WebM video format",1],["X264","FFMpeg\\Format\\Video","FFMpeg\/Format\/Video\/X264.html"," < DefaultVideo","The X264 video format",1],["AdapterInterface::load","FFMpeg\\AdapterInterface","FFMpeg\/AdapterInterface.html#method_load","(Logger<\/abbr> $logger)","Loads the adapter",2],["Binary::__construct","FFMpeg\\Binary","FFMpeg\/Binary.html#method___construct","(type<\/abbr> $binary, Logger<\/abbr> $logger)","Binary constructor",2],["Binary::__destruct","FFMpeg\\Binary","FFMpeg\/Binary.html#method___destruct","()","Destructor",2],["Binary::load","FFMpeg\\Binary","FFMpeg\/Binary.html#method_load","(Logger<\/abbr> $logger)","Loads the adapter",2],["FFMpeg::__destruct","FFMpeg\\FFMpeg","FFMpeg\/FFMpeg.html#method___destruct","()","Destructor",2],["FFMpeg::setThreads","FFMpeg\\FFMpeg","FFMpeg\/FFMpeg.html#method_setThreads","($threads)","",2],["FFMpeg::getThreads","FFMpeg\\FFMpeg","FFMpeg\/FFMpeg.html#method_getThreads","()","",2],["FFMpeg::open","FFMpeg\\FFMpeg","FFMpeg\/FFMpeg.html#method_open","(string $pathfile)","Opens a file in order to be processed",2],["FFMpeg::setProber","FFMpeg\\FFMpeg","FFMpeg\/FFMpeg.html#method_setProber","(FFProbe<\/abbr><\/a> $prober)","Set a prober",2],["FFMpeg::close","FFMpeg\\FFMpeg","FFMpeg\/FFMpeg.html#method_close","()","Close a file",2],["FFMpeg::extractImage","FFMpeg\\FFMpeg","FFMpeg\/FFMpeg.html#method_extractImage","(integer $time, string $output)","Extract an image from a media file",2],["FFMpeg::encode","FFMpeg\\FFMpeg","FFMpeg\/FFMpeg.html#method_encode","(Audio<\/abbr><\/a> $format, string $outputPathfile)","Encode the file to the specified format",2],["FFProbe::probeFormat","FFMpeg\\FFProbe","FFMpeg\/FFProbe.html#method_probeFormat","(string $pathfile)","Probe the format of a given file",2],["FFProbe::probeStreams","FFMpeg\\FFProbe","FFMpeg\/FFProbe.html#method_probeStreams","(string $pathfile)","Probe the streams contained in a given file",2],["Audio::getKiloBitrate","FFMpeg\\Format\\Audio","FFMpeg\/Format\/Audio.html#method_getKiloBitrate","()","Get the kiloBitrate value",2],["Audio::getExtraParams","FFMpeg\\Format\\Audio","FFMpeg\/Format\/Audio.html#method_getExtraParams","()","Give som extra parameters to add to ffmpeg commandline",2],["DefaultAudio::getExtraParams","FFMpeg\\Format\\Audio\\DefaultAudio","FFMpeg\/Format\/Audio\/DefaultAudio.html#method_getExtraParams","()","Returns extra parameters for the encoding",2],["DefaultAudio::getAudioCodec","FFMpeg\\Format\\Audio\\DefaultAudio","FFMpeg\/Format\/Audio\/DefaultAudio.html#method_getAudioCodec","()","{@inheritdoc}",2],["DefaultAudio::setAudioCodec","FFMpeg\\Format\\Audio\\DefaultAudio","FFMpeg\/Format\/Audio\/DefaultAudio.html#method_setAudioCodec","(string $audioCodec)","Set the audio codec, Should be in the available ones,",2],["DefaultAudio::getAudioSampleRate","FFMpeg\\Format\\Audio\\DefaultAudio","FFMpeg\/Format\/Audio\/DefaultAudio.html#method_getAudioSampleRate","()","Get the audio sample rate",2],["DefaultAudio::setAudioSampleRate","FFMpeg\\Format\\Audio\\DefaultAudio","FFMpeg\/Format\/Audio\/DefaultAudio.html#method_setAudioSampleRate","(integer $audioSampleRate)","Set the audio sample rate",2],["DefaultAudio::getKiloBitrate","FFMpeg\\Format\\Audio\\DefaultAudio","FFMpeg\/Format\/Audio\/DefaultAudio.html#method_getKiloBitrate","()","{@inheritdoc}",2],["DefaultAudio::setKiloBitrate","FFMpeg\\Format\\Audio\\DefaultAudio","FFMpeg\/Format\/Audio\/DefaultAudio.html#method_setKiloBitrate","(int $kiloBitrate)","Set the kiloBitrate value",2],["Flac::getAvailableAudioCodecs","FFMpeg\\Format\\Audio\\Flac","FFMpeg\/Format\/Audio\/Flac.html#method_getAvailableAudioCodecs","()","{@inheritDoc}",2],["Interactive::getAvailableAudioCodecs","FFMpeg\\Format\\Audio\\Interactive","FFMpeg\/Format\/Audio\/Interactive.html#method_getAvailableAudioCodecs","()","Returns the list of available audio codecs for this",2],["Mp3::getAvailableAudioCodecs","FFMpeg\\Format\\Audio\\Mp3","FFMpeg\/Format\/Audio\/Mp3.html#method_getAvailableAudioCodecs","()","{@inheritDoc}",2],["Resamplable::getAudioSampleRate","FFMpeg\\Format\\Audio\\Resamplable","FFMpeg\/Format\/Audio\/Resamplable.html#method_getAudioSampleRate","()","Get the audio sample rate",2],["Transcodable::getAudioCodec","FFMpeg\\Format\\Audio\\Transcodable","FFMpeg\/Format\/Audio\/Transcodable.html#method_getAudioCodec","()","Returns the audio codec",2],["Dimension::__construct","FFMpeg\\Format\\Dimension","FFMpeg\/Format\/Dimension.html#method___construct","(integer $width, integer $height)","Constructor",2],["Dimension::getWidth","FFMpeg\\Format\\Dimension","FFMpeg\/Format\/Dimension.html#method_getWidth","()","Return width",2],["Dimension::getHeight","FFMpeg\\Format\\Dimension","FFMpeg\/Format\/Dimension.html#method_getHeight","()","Return height",2],["DefaultVideo::getWidth","FFMpeg\\Format\\Video\\DefaultVideo","FFMpeg\/Format\/Video\/DefaultVideo.html#method_getWidth","()","Returns the width setting.",2],["DefaultVideo::getHeight","FFMpeg\\Format\\Video\\DefaultVideo","FFMpeg\/Format\/Video\/DefaultVideo.html#method_getHeight","()","Returns the height setting The return of this method",2],["DefaultVideo::setDimensions","FFMpeg\\Format\\Video\\DefaultVideo","FFMpeg\/Format\/Video\/DefaultVideo.html#method_setDimensions","(integer $width, integer $height)","Set the dimensions",2],["DefaultVideo::getComputedDimensions","FFMpeg\\Format\\Video\\DefaultVideo","FFMpeg\/Format\/Video\/DefaultVideo.html#method_getComputedDimensions","(integer $originalWidth, integer $originalHeight)","{@inheritdoc)",2],["DefaultVideo::setResizeMode","FFMpeg\\Format\\Video\\DefaultVideo","FFMpeg\/Format\/Video\/DefaultVideo.html#method_setResizeMode","(string $mode)","Set the resize mode",2],["DefaultVideo::getResizeMode","FFMpeg\\Format\\Video\\DefaultVideo","FFMpeg\/Format\/Video\/DefaultVideo.html#method_getResizeMode","()","Get the current resize mode name",2],["DefaultVideo::getFrameRate","FFMpeg\\Format\\Video\\DefaultVideo","FFMpeg\/Format\/Video\/DefaultVideo.html#method_getFrameRate","()","Returns the frame rate",2],["DefaultVideo::setFrameRate","FFMpeg\\Format\\Video\\DefaultVideo","FFMpeg\/Format\/Video\/DefaultVideo.html#method_setFrameRate","(integer $frameRate)","Set the framerate",2],["DefaultVideo::getVideoCodec","FFMpeg\\Format\\Video\\DefaultVideo","FFMpeg\/Format\/Video\/DefaultVideo.html#method_getVideoCodec","()","{@inheritdoc}",2],["DefaultVideo::setVideoCodec","FFMpeg\\Format\\Video\\DefaultVideo","FFMpeg\/Format\/Video\/DefaultVideo.html#method_setVideoCodec","(string $videoCodec)","Set the video codec, Should be in the available ones,",2],["DefaultVideo::getGOPsize","FFMpeg\\Format\\Video\\DefaultVideo","FFMpeg\/Format\/Video\/DefaultVideo.html#method_getGOPsize","()","{@inheritdoc}",2],["DefaultVideo::setGOPsize","FFMpeg\\Format\\Video\\DefaultVideo","FFMpeg\/Format\/Video\/DefaultVideo.html#method_setGOPsize","(integer $GOPsize)","Set the GOP size",2],["Interactive::getAvailableVideoCodecs","FFMpeg\\Format\\Video\\Interactive","FFMpeg\/Format\/Video\/Interactive.html#method_getAvailableVideoCodecs","()","Returns the list of available video codecs for this",2],["Ogg::supportBFrames","FFMpeg\\Format\\Video\\Ogg","FFMpeg\/Format\/Video\/Ogg.html#method_supportBFrames","()","{@inheritDoc}",2],["Ogg::getAvailableAudioCodecs","FFMpeg\\Format\\Video\\Ogg","FFMpeg\/Format\/Video\/Ogg.html#method_getAvailableAudioCodecs","()","{@inheritDoc}",2],["Ogg::getAvailableVideoCodecs","FFMpeg\\Format\\Video\\Ogg","FFMpeg\/Format\/Video\/Ogg.html#method_getAvailableVideoCodecs","()","{@inheritDoc}",2],["Resamplable::getFrameRate","FFMpeg\\Format\\Video\\Resamplable","FFMpeg\/Format\/Video\/Resamplable.html#method_getFrameRate","()","Returns the frame rate",2],["Resamplable::supportBFrames","FFMpeg\\Format\\Video\\Resamplable","FFMpeg\/Format\/Video\/Resamplable.html#method_supportBFrames","()","Returns true if the current format supports B-Frames",2],["Resamplable::getGOPSize","FFMpeg\\Format\\Video\\Resamplable","FFMpeg\/Format\/Video\/Resamplable.html#method_getGOPSize","()","Returns the GOP size",2],["Resizable::getComputedDimensions","FFMpeg\\Format\\Video\\Resizable","FFMpeg\/Format\/Video\/Resizable.html#method_getComputedDimensions","(integer $originalWidth, integer $originalHeight)","Returns the computed dimensions for the resize, after",2],["Transcodable::getVideoCodec","FFMpeg\\Format\\Video\\Transcodable","FFMpeg\/Format\/Video\/Transcodable.html#method_getVideoCodec","()","Returns the video codec",2],["WebM::supportBFrames","FFMpeg\\Format\\Video\\WebM","FFMpeg\/Format\/Video\/WebM.html#method_supportBFrames","()","{@inheritDoc}",2],["WebM::getExtraParams","FFMpeg\\Format\\Video\\WebM","FFMpeg\/Format\/Video\/WebM.html#method_getExtraParams","()","{@inheritDoc}",2],["WebM::getAvailableAudioCodecs","FFMpeg\\Format\\Video\\WebM","FFMpeg\/Format\/Video\/WebM.html#method_getAvailableAudioCodecs","()","{@inheritDoc}",2],["WebM::getAvailableVideoCodecs","FFMpeg\\Format\\Video\\WebM","FFMpeg\/Format\/Video\/WebM.html#method_getAvailableVideoCodecs","()","{@inheritDoc}",2],["X264::supportBFrames","FFMpeg\\Format\\Video\\X264","FFMpeg\/Format\/Video\/X264.html#method_supportBFrames","()","{@inheritDoc}",2],["X264::getAvailableAudioCodecs","FFMpeg\\Format\\Video\\X264","FFMpeg\/Format\/Video\/X264.html#method_getAvailableAudioCodecs","()","{@inheritDoc}",2],["X264::getAvailableVideoCodecs","FFMpeg\\Format\\Video\\X264","FFMpeg\/Format\/Video\/X264.html#method_getAvailableVideoCodecs","()","{@inheritDoc}",2]] } } search_data['index']['longSearchIndex'] = search_data['index']['searchIndex'] \ No newline at end of file