[BC] Upgraded dependencies, dropped support for anything below PHP 8.0. (#849)
* GitHub actions + style fixes + updated packages * Fixed workflows dir * Support for PHP 8.1 (#1) * Update README.md * Revert some changes from upstream
This commit is contained in:
parent
72c946dc7d
commit
111c153428
335 changed files with 4394 additions and 28116 deletions
94
.github/workflows/test.yaml
vendored
94
.github/workflows/test.yaml
vendored
|
|
@ -1,66 +1,48 @@
|
|||
name: Test
|
||||
name: run-tests
|
||||
|
||||
on:
|
||||
pull_request: ~
|
||||
push:
|
||||
branches:
|
||||
- "master"
|
||||
schedule:
|
||||
- cron: "0 0 * * *"
|
||||
on: [push, pull_request]
|
||||
|
||||
jobs:
|
||||
test:
|
||||
name: "PHP ${{ matrix.php-version }} ${{ matrix.dependency-versions }} ${{ matrix.composer-stability }}"
|
||||
runs-on: ubuntu-latest
|
||||
test:
|
||||
runs-on: ${{ matrix.os }}
|
||||
strategy:
|
||||
fail-fast: true
|
||||
matrix:
|
||||
os: [ubuntu-20.04]
|
||||
php: [8.1, 8.0]
|
||||
ffmpeg: [5.0, 4.4]
|
||||
dependency-version: [prefer-lowest, prefer-stable]
|
||||
|
||||
env:
|
||||
PHPUNIT_VERSION: ${{ matrix.phpunit-version }}
|
||||
name: ${{ matrix.os }} - P${{ matrix.php }} - FF${{ matrix.ffmpeg }} - ${{ matrix.dependency-version }}
|
||||
|
||||
strategy:
|
||||
fail-fast: false
|
||||
matrix:
|
||||
os: [ubuntu-20.04]
|
||||
php-version: [8.1, 8.0, 7.4, 7.3, 7.2, 7.1, 7.0, 5.6, 5.5]
|
||||
dependency-versions: [prefer-lowest, prefer-stable]
|
||||
include:
|
||||
- php-version: 5.5
|
||||
phpunit-version: 4
|
||||
steps:
|
||||
- name: Checkout code
|
||||
uses: actions/checkout@v2
|
||||
|
||||
steps:
|
||||
- name: Checkout project
|
||||
uses: actions/checkout@v2
|
||||
- name: Setup PHP
|
||||
uses: shivammathur/setup-php@v2
|
||||
with:
|
||||
php-version: ${{ matrix.php }}
|
||||
extensions: dom, curl, libxml, mbstring, zip, pcntl, pdo, sqlite, pdo_sqlite, bcmath, soap, intl, gd, exif, iconv, imagick, mysql, mysqli, pdo_mysql, fileinfo
|
||||
coverage: none
|
||||
|
||||
- name: Install and configure PHP
|
||||
uses: shivammathur/setup-php@v2
|
||||
with:
|
||||
php-version: ${{ matrix.php-version }}
|
||||
tools: composer:v2
|
||||
coverage: none
|
||||
- name: Install FFmpeg
|
||||
uses: Iamshankhadeep/setup-ffmpeg@ffmpeg-5.0-20220119
|
||||
with:
|
||||
version: ${{ matrix.ffmpeg }}
|
||||
id: setup-ffmpeg
|
||||
|
||||
- name: Install phpunit
|
||||
if: ${{ matrix.phpunit-version }}
|
||||
run: |
|
||||
composer remove symfony/phpunit-bridge --dev
|
||||
wget -O phpunit "https://phar.phpunit.de/phpunit-${{ matrix.phpunit-version }}.phar"
|
||||
chmod +x phpunit
|
||||
composer require "roave/security-advisories" dev-master --no-update
|
||||
- name: Install dependencies
|
||||
run: |
|
||||
composer update --${{ matrix.dependency-version }} --prefer-dist --no-interaction --no-suggest
|
||||
|
||||
- name: Set composer stability
|
||||
if: ${{ matrix.composer-stability }}
|
||||
run: composer config minimum-stability ${{ matrix.composer-stability }}
|
||||
- name: Cache dependencies
|
||||
uses: actions/cache@v2
|
||||
with:
|
||||
path: ~/.composer/cache/files
|
||||
key: dependencies-php-${{ matrix.php }}-composer-${{ hashFiles('composer.json') }}-dep-${{ matrix.dependency-version }}
|
||||
|
||||
- name: Install composer dependencies
|
||||
uses: ramsey/composer-install@v1
|
||||
with:
|
||||
dependency-versions: ${{ matrix.dependency-versions }}
|
||||
|
||||
- name: Install ffmpeg
|
||||
uses: FedericoCarboni/setup-ffmpeg@v1
|
||||
|
||||
- name: Run tests
|
||||
run: |
|
||||
if [ "$PHPUNIT_VERSION" ]; then
|
||||
./phpunit --verbose
|
||||
else
|
||||
./vendor/bin/simple-phpunit --verbose
|
||||
fi;
|
||||
- name: Execute tests
|
||||
run: vendor/bin/phpunit
|
||||
env:
|
||||
FFMPEG_TEMPORARY_FILES_ROOT: ${{ github.workspace }}
|
||||
|
|
|
|||
1
.gitignore
vendored
1
.gitignore
vendored
|
|
@ -5,6 +5,7 @@ composer.phar
|
|||
composer.lock
|
||||
phpunit.xml
|
||||
.phpunit.result.cache
|
||||
.php-cs-fixer.cache
|
||||
/tests/Functional/output/output-*
|
||||
/docs/doctum.phar
|
||||
/docs/source/API/API/cache/twig/*
|
||||
|
|
|
|||
24
LICENSE
24
LICENSE
|
|
@ -1,21 +1,21 @@
|
|||
PHP-FFmpeg is released with MIT License :
|
||||
MIT License
|
||||
|
||||
Copyright (c) 2012 Alchemy
|
||||
Copyright (c) 2012-2021 Alchemy
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
of this software and associated documentation files (the "Software"),
|
||||
to deal in the Software without restriction, including without limitation
|
||||
the rights to use, copy, modify, merge, publish, distribute, sublicense,
|
||||
and/or sell copies of the Software, and to permit persons to whom the
|
||||
Software is furnished to do so, subject to the following conditions:
|
||||
of this software and associated documentation files (the "Software"), to deal
|
||||
in the Software without restriction, including without limitation the rights
|
||||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||
copies of the Software, and to permit persons to whom the Software is
|
||||
furnished to do so, subject to the following conditions:
|
||||
|
||||
The above copyright notice and this permission notice shall be included in all
|
||||
copies or substantial portions of the Software.
|
||||
|
||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
|
||||
OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
||||
FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
|
||||
IN THE SOFTWARE.
|
||||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
||||
SOFTWARE.
|
||||
64
ORIGINAL_ALCHEMY_CHANGELOG.md
Normal file
64
ORIGINAL_ALCHEMY_CHANGELOG.md
Normal file
|
|
@ -0,0 +1,64 @@
|
|||
CHANGELOG
|
||||
---------
|
||||
* 1.6.0 (2015-03-02)
|
||||
* BC Break: bump minimum PHP versions
|
||||
* Allow use of evenement v2.0 (thanks @patkar for the P/R)
|
||||
|
||||
* 1.5.0 (2013-06-21)
|
||||
|
||||
* BC Break : ConfigurationInterface::get does not throw exceptions anymore
|
||||
in case the key does not exist. Second argument is a default value to return
|
||||
in case the key does not exist.
|
||||
|
||||
* 1.4.1 (2013-05-23)
|
||||
|
||||
* Add third parameter to BinaryInterface::command method to pass a listener or
|
||||
an array of listener that will be registered just the time of the command.
|
||||
|
||||
* 1.4.0 (2013-05-11)
|
||||
|
||||
* Extract process run management to ProcessRunner.
|
||||
* Add support for process listeners.
|
||||
* Provides bundled DebugListener.
|
||||
* Add BinaryInterface::command method.
|
||||
* BC break : ProcessRunnerInterface::run now takes an SplObjectStorage containing
|
||||
listeners as second argument.
|
||||
* BC break : BinaryInterface no longer implements LoggerAwareInterface
|
||||
as it is now supported by ProcessRunner.
|
||||
|
||||
* 1.3.4 (2013-04-26)
|
||||
|
||||
* Add BinaryDriver::run method.
|
||||
|
||||
* 1.3.3 (2013-04-26)
|
||||
|
||||
* Add BinaryDriver::createProcessMock method.
|
||||
|
||||
* 1.3.2 (2013-04-26)
|
||||
|
||||
* Add BinaryDriverTestCase for testing BinaryDriver implementations.
|
||||
|
||||
* 1.3.1 (2013-04-24)
|
||||
|
||||
* Add timeouts handling
|
||||
|
||||
* 1.3.0 (2013-04-24)
|
||||
|
||||
* Add BinaryInterface and AbstractBinary
|
||||
|
||||
* 1.2.1 (2013-04-24)
|
||||
|
||||
* Add ConfigurationAwareInterface
|
||||
* Add ProcessBuilderAwareInterface
|
||||
|
||||
* 1.2.0 (2013-04-24)
|
||||
|
||||
* Add BinaryDriver\Configuration
|
||||
|
||||
* 1.1.0 (2013-04-24)
|
||||
|
||||
* Add support for timeouts via `setTimeout` method
|
||||
|
||||
* 1.0.0 (2013-04-23)
|
||||
|
||||
* First stable version.
|
||||
21
ORIGINAL_ALCHEMY_LICENSE
Normal file
21
ORIGINAL_ALCHEMY_LICENSE
Normal file
|
|
@ -0,0 +1,21 @@
|
|||
BinaryDriver is released with MIT License :
|
||||
|
||||
Copyright (c) 2013 Alchemy
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
of this software and associated documentation files (the "Software"),
|
||||
to deal in the Software without restriction, including without limitation
|
||||
the rights to use, copy, modify, merge, publish, distribute, sublicense,
|
||||
and/or sell copies of the Software, and to permit persons to whom the
|
||||
Software is furnished to do so, subject to the following conditions:
|
||||
|
||||
The above copyright notice and this permission notice shall be included in all
|
||||
copies or substantial portions of the Software.
|
||||
|
||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
|
||||
OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
||||
FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
|
||||
IN THE SOFTWARE.
|
||||
190
ORIGINAL_ALCHEMY_README.md
Normal file
190
ORIGINAL_ALCHEMY_README.md
Normal file
|
|
@ -0,0 +1,190 @@
|
|||
# Binary Driver
|
||||
|
||||
Binary-Driver is a set of PHP tools to build binary drivers.
|
||||
|
||||
[](https://travis-ci.org/alchemy-fr/BinaryDriver)
|
||||
|
||||
## Why ?
|
||||
|
||||
You may wonder *Why building a library while I can use `exec` or
|
||||
[symfony/process](https://github.com/symfony/Process) ?*.
|
||||
|
||||
Here is a simple answer :
|
||||
|
||||
- If you use `exec`, `passthru`, `system`, `proc_open` or any low level process
|
||||
handling in PHP, you should have a look to [symfony/process](https://github.com/symfony/Process)
|
||||
component that will provide an OO portable, testable and secure interface to
|
||||
deal with this. It seems easy at first approach, but if you look at this
|
||||
component [unit tests](https://github.com/symfony/Process/tree/master/Tests),
|
||||
you will see that handling process in a simple interface can easily become a
|
||||
nightmare.
|
||||
|
||||
- If you already use symfony/process, and want to build binary drivers, you
|
||||
will always have the same common set of methods and objects to configure, log,
|
||||
debug, and generate processes.
|
||||
This library is a base to implement any binary driver with this common set of
|
||||
needs.
|
||||
|
||||
## AbstractBinary
|
||||
|
||||
`AbstractBinary` provides an abstract class to build a binary driver. It implements
|
||||
`BinaryInterface`.
|
||||
|
||||
Implementation example :
|
||||
|
||||
```php
|
||||
use Alchemy\BinaryDriver\AbstractBinary;
|
||||
|
||||
class LsDriver extends AbstractBinary
|
||||
{
|
||||
public function getName()
|
||||
{
|
||||
return 'ls driver';
|
||||
}
|
||||
}
|
||||
|
||||
$parser = new LsParser();
|
||||
|
||||
$driver = Driver::load('ls');
|
||||
// will return the output of `ls -a -l`
|
||||
$parser->parse($driver->command(array('-a', '-l')));
|
||||
```
|
||||
|
||||
### Binary detection troubleshooting
|
||||
|
||||
If you are using Nginx with PHP-fpm, executable detection may not work because of an empty `$_ENV['path']`.
|
||||
To avoid having an empty `PATH` environment variable, add the following line to your `fastcgi_params`
|
||||
config file (replace `/your/current/path/` with the output of `printenv PATH`) :
|
||||
|
||||
```
|
||||
fastcgi_param PATH /your/current/path
|
||||
```
|
||||
|
||||
## Logging
|
||||
|
||||
You can log events with a `Psr\Log\LoggerInterface` by passing it in the load
|
||||
method as second argument :
|
||||
|
||||
```php
|
||||
$logger = new Monolog\Logger('driver');
|
||||
$driver = Driver::load('ls', $logger);
|
||||
```
|
||||
|
||||
## Listeners
|
||||
|
||||
You can add custom listeners on processes.
|
||||
Listeners are built on top of [Evenement](https://github.com/igorw/evenement)
|
||||
and must implement `Alchemy\BinaryDriver\ListenerInterface`.
|
||||
|
||||
```php
|
||||
use Symfony\Component\Process\Process;
|
||||
|
||||
class DebugListener extends EventEmitter implements ListenerInterface
|
||||
{
|
||||
public function handle($type, $data)
|
||||
{
|
||||
foreach (explode(PHP_EOL, $data) as $line) {
|
||||
$this->emit($type === Process::ERR ? 'error' : 'out', array($line));
|
||||
}
|
||||
}
|
||||
|
||||
public function forwardedEvents()
|
||||
{
|
||||
// forward 'error' events to the BinaryInterface
|
||||
return array('error');
|
||||
}
|
||||
}
|
||||
|
||||
$listener = new DebugListener();
|
||||
|
||||
$driver = CustomImplementation::load('php');
|
||||
|
||||
// adds listener
|
||||
$driver->listen($listener);
|
||||
|
||||
$driver->on('error', function ($line) {
|
||||
echo '[ERROR] ' . $line . PHP_EOL;
|
||||
});
|
||||
|
||||
// removes listener
|
||||
$driver->unlisten($listener);
|
||||
```
|
||||
|
||||
### Bundled listeners
|
||||
|
||||
The debug listener is a simple listener to catch `stderr` and `stdout` outputs ;
|
||||
read the implementation for customization.
|
||||
|
||||
```php
|
||||
use Alchemy\BinaryDriver\Listeners\DebugListener;
|
||||
|
||||
$driver = CustomImplementation::load('php');
|
||||
$driver->listen(new DebugListener());
|
||||
|
||||
$driver->on('debug', function ($line) {
|
||||
echo $line;
|
||||
});
|
||||
```
|
||||
|
||||
## ProcessBuilderFactory
|
||||
|
||||
ProcessBuilderFactory ease spawning processes by generating Symfony [Process]
|
||||
(http://symfony.com/doc/master/components/process.html) objects.
|
||||
|
||||
```php
|
||||
use Alchemy\BinaryDriver\ProcessBuilderFactory;
|
||||
|
||||
$factory = new ProcessBuilderFactory('/usr/bin/php');
|
||||
|
||||
// return a Symfony\Component\Process\Process
|
||||
$process = $factory->create('-v');
|
||||
|
||||
// echoes '/usr/bin/php' '-v'
|
||||
echo $process->getCommandLine();
|
||||
|
||||
$process = $factory->create(array('-r', 'echo "Hello !";'));
|
||||
|
||||
// echoes '/usr/bin/php' '-r' 'echo "Hello !";'
|
||||
echo $process->getCommandLine();
|
||||
```
|
||||
|
||||
## Configuration
|
||||
|
||||
A simple configuration object, providing an `ArrayAccess` and `IteratorAggregate`
|
||||
interface.
|
||||
|
||||
```php
|
||||
use Alchemy\BinaryDriver\Configuration;
|
||||
|
||||
$conf = new Configuration(array('timeout' => 0));
|
||||
|
||||
echo $conf->get('timeout');
|
||||
|
||||
if ($conf->has('param')) {
|
||||
$conf->remove('param');
|
||||
}
|
||||
|
||||
$conf->set('timeout', 20);
|
||||
|
||||
$conf->all();
|
||||
```
|
||||
|
||||
Same example using the `ArrayAccess` interface :
|
||||
|
||||
```php
|
||||
use Alchemy\BinaryDriver\Configuration;
|
||||
|
||||
$conf = new Configuration(array('timeout' => 0));
|
||||
|
||||
echo $conf['timeout'];
|
||||
|
||||
if (isset($conf['param'])) {
|
||||
unset($conf['param']);
|
||||
}
|
||||
|
||||
$conf['timeout'] = 20;
|
||||
```
|
||||
|
||||
## License
|
||||
|
||||
This project is released under the MIT license.
|
||||
|
|
@ -1,4 +1,4 @@
|
|||
# php-ffmpeg
|
||||
# PHP-FFMPEG
|
||||
|
||||
[](https://github.com/PHP-FFMpeg/PHP-FFMpeg/actions/workflows/test.yaml)
|
||||
|
||||
|
|
|
|||
|
|
@ -2,7 +2,16 @@
|
|||
"name": "php-ffmpeg/php-ffmpeg",
|
||||
"type": "library",
|
||||
"description": "FFMpeg PHP, an Object Oriented library to communicate with AVconv / ffmpeg",
|
||||
"keywords": ["video processing", "video", "audio processing", "audio", "avconv", "ffmpeg", "avprobe", "ffprobe"],
|
||||
"keywords": [
|
||||
"video processing",
|
||||
"video",
|
||||
"audio processing",
|
||||
"audio",
|
||||
"avconv",
|
||||
"ffmpeg",
|
||||
"avprobe",
|
||||
"ffprobe"
|
||||
],
|
||||
"license": "MIT",
|
||||
"authors": [
|
||||
{
|
||||
|
|
@ -29,35 +38,37 @@
|
|||
"name": "Jens Hausdorf",
|
||||
"email": "hello@jens-hausdorf.de",
|
||||
"homepage": "https://jens-hausdorf.de"
|
||||
},
|
||||
{
|
||||
"name": "Pascal Baljet",
|
||||
"email": "pascal@protone.media",
|
||||
"homepage": "https://protone.media"
|
||||
}
|
||||
],
|
||||
"require": {
|
||||
"php": ">=5.5.9",
|
||||
"alchemy/binary-driver": "^1.5 || ~2.0.0 || ^5.0",
|
||||
"evenement/evenement": "^3.0 || ^2.0 || ^1.0",
|
||||
"neutron/temporary-filesystem": "^2.1.1 || ^3.0",
|
||||
"symfony/cache": "^3.1 || ^4.0 || ^5.0 || ^6.0"
|
||||
"php": "^8.0 || ^8.1",
|
||||
"evenement/evenement": "^3.0",
|
||||
"psr/log": "^1.0 || ^2.0 || ^3.0",
|
||||
"spatie/temporary-directory": "^2.0",
|
||||
"symfony/process": "^5.4 || ^6.0",
|
||||
"symfony/cache": "^5.4 || ^6.0"
|
||||
},
|
||||
"suggest": {
|
||||
"php-ffmpeg/extras": "A compilation of common audio & video drivers for PHP-FFMpeg"
|
||||
},
|
||||
"require-dev": {
|
||||
"symfony/phpunit-bridge": "^5.0.4",
|
||||
"symfony/process": "2.8 || 3.3"
|
||||
"phpunit/phpunit": "^9.5.10"
|
||||
},
|
||||
"autoload": {
|
||||
"psr-0": {
|
||||
"FFMpeg": "src"
|
||||
"psr-4": {
|
||||
"FFMpeg\\": "src/FFMpeg",
|
||||
"Alchemy\\BinaryDriver\\": "src/Alchemy/BinaryDriver"
|
||||
}
|
||||
},
|
||||
"autoload-dev": {
|
||||
"psr-4": {
|
||||
"Tests\\FFMpeg\\": "tests"
|
||||
}
|
||||
},
|
||||
"extra": {
|
||||
"branch-alias": {
|
||||
"dev-master": "0.x-dev"
|
||||
"Alchemy\\Tests\\BinaryDriver\\": "tests/Alchemy/BinaryDriver",
|
||||
"Tests\\FFMpeg\\": "tests/FFMpeg"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
@ -1,15 +0,0 @@
|
|||
<?php
|
||||
|
||||
use Doctum\Doctum;
|
||||
use Symfony\Component\Finder\Finder;
|
||||
|
||||
$iterator = Finder::create()
|
||||
->files()
|
||||
->name('*.php')
|
||||
->in(__DIR__.'/../src/');
|
||||
|
||||
return new Doctum($iterator, [
|
||||
'title' => 'PHP-FFMpeg API',
|
||||
'build_dir' => __DIR__.'/source/API/API',
|
||||
'cache_dir' => __DIR__.'/source/API/API/cache',
|
||||
]);
|
||||
|
|
@ -1,25 +0,0 @@
|
|||
#!/bin/bash
|
||||
|
||||
set -e
|
||||
|
||||
SELF_DIR=$(dirname $0)
|
||||
cd ${SELF_DIR}
|
||||
|
||||
rm -f doctum.phar
|
||||
rm -f doctum.phar.sha256
|
||||
|
||||
# Download the latest (5.1.x) release if the file does not exist
|
||||
# Remove it to update your phar
|
||||
curl -o doctum.phar https://doctum.long-term.support/releases/5.1/doctum.phar
|
||||
curl -o doctum.phar.sha256 https://doctum.long-term.support/releases/5.1/doctum.phar.sha256
|
||||
|
||||
sha256sum --strict --check doctum.phar.sha256
|
||||
rm doctum.phar.sha256
|
||||
|
||||
# You can fetch the latest (5.1.x) version code here:
|
||||
# https://doctum.long-term.support/releases/5.1/VERSION
|
||||
|
||||
|
||||
# Show the version to inform users of the script
|
||||
php doctum.phar --version
|
||||
php doctum.phar update --force --ignore-parse-errors doctum.php -v
|
||||
|
|
@ -1,50 +0,0 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<meta name="robots" content="index, follow, all" />
|
||||
<title>FFMpeg | PHP-FFMpeg API</title>
|
||||
<link rel="stylesheet" type="text/css" href="stylesheet.css">
|
||||
</head>
|
||||
<body id="overview">
|
||||
<div class="header">
|
||||
<ul>
|
||||
<li><a href="classes.html">Classes</a></li>
|
||||
<li><a href="namespaces.html">Namespaces</a></li>
|
||||
<li><a href="interfaces.html">Interfaces</a></li>
|
||||
<li><a href="traits.html">Traits</a></li>
|
||||
<li><a href="doc-index.html">Index</a></li>
|
||||
|
||||
</ul>
|
||||
|
||||
<div id="title">PHP-FFMpeg API</div>
|
||||
|
||||
<div class="type">Namespace</div>
|
||||
<h1>FFMpeg</h1>
|
||||
</div>
|
||||
<div class="content">
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="FFMpeg/FFMpeg.html"><abbr title="FFMpeg\FFMpeg">FFMpeg</abbr></a></td>
|
||||
<td class="last">
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><a href="FFMpeg/FFMpegServiceProvider.html"><abbr title="FFMpeg\FFMpegServiceProvider">FFMpegServiceProvider</abbr></a></td>
|
||||
<td class="last">
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><a href="FFMpeg/FFProbe.html"><abbr title="FFMpeg\FFProbe">FFProbe</abbr></a></td>
|
||||
<td class="last">
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
</div>
|
||||
<div id="footer">
|
||||
Generated by <a href="http://sami.sensiolabs.org/" target="_top">Sami, the API Documentation Generator</a>.
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
|
|
@ -1,59 +0,0 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<meta name="robots" content="index, follow, all" />
|
||||
<title>FFMpeg\Coordinate | PHP-FFMpeg API</title>
|
||||
<link rel="stylesheet" type="text/css" href="../stylesheet.css">
|
||||
</head>
|
||||
<body id="overview">
|
||||
<div class="header">
|
||||
<ul>
|
||||
<li><a href="../classes.html">Classes</a></li>
|
||||
<li><a href="../namespaces.html">Namespaces</a></li>
|
||||
<li><a href="../interfaces.html">Interfaces</a></li>
|
||||
<li><a href="../traits.html">Traits</a></li>
|
||||
<li><a href="../doc-index.html">Index</a></li>
|
||||
|
||||
</ul>
|
||||
|
||||
<div id="title">PHP-FFMpeg API</div>
|
||||
|
||||
<div class="type">Namespace</div>
|
||||
<h1>FFMpeg\Coordinate</h1>
|
||||
</div>
|
||||
<div class="content">
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="../FFMpeg/Coordinate/AspectRatio.html"><abbr title="FFMpeg\Coordinate\AspectRatio">AspectRatio</abbr></a></td>
|
||||
<td class="last">
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><a href="../FFMpeg/Coordinate/Dimension.html"><abbr title="FFMpeg\Coordinate\Dimension">Dimension</abbr></a></td>
|
||||
<td class="last">Dimension object, used for manipulating width and height couples</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><a href="../FFMpeg/Coordinate/FrameRate.html"><abbr title="FFMpeg\Coordinate\FrameRate">FrameRate</abbr></a></td>
|
||||
<td class="last">
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><a href="../FFMpeg/Coordinate/Point.html"><abbr title="FFMpeg\Coordinate\Point">Point</abbr></a></td>
|
||||
<td class="last">
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><a href="../FFMpeg/Coordinate/TimeCode.html"><abbr title="FFMpeg\Coordinate\TimeCode">TimeCode</abbr></a></td>
|
||||
<td class="last">
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
</div>
|
||||
<div id="footer">
|
||||
Generated by <a href="http://sami.sensiolabs.org/" target="_top">Sami, the API Documentation Generator</a>.
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
|
|
@ -1,429 +0,0 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<meta name="robots" content="index, follow, all" />
|
||||
<title>FFMpeg\Coordinate\AspectRatio | PHP-FFMpeg API</title>
|
||||
<link rel="stylesheet" type="text/css" href="../../stylesheet.css">
|
||||
</head>
|
||||
<body id="class">
|
||||
<div class="header">
|
||||
<ul>
|
||||
<li><a href="../../classes.html">Classes</a></li>
|
||||
<li><a href="../../namespaces.html">Namespaces</a></li>
|
||||
<li><a href="../../interfaces.html">Interfaces</a></li>
|
||||
<li><a href="../../traits.html">Traits</a></li>
|
||||
<li><a href="../../doc-index.html">Index</a></li>
|
||||
|
||||
</ul>
|
||||
|
||||
<div id="title">PHP-FFMpeg API</div>
|
||||
|
||||
<div class="type">Class</div>
|
||||
<h1><a href="../../FFMpeg/Coordinate.html">FFMpeg\Coordinate</a>\AspectRatio</h1>
|
||||
</div>
|
||||
<div class="content">
|
||||
<p> class
|
||||
<strong>AspectRatio</strong></p>
|
||||
|
||||
|
||||
<h2>Constants</h2>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td>AR_4_3</td>
|
||||
<td class="last">
|
||||
<p><em>
|
||||
</em></p>
|
||||
<p>
|
||||
</p>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>AR_16_9</td>
|
||||
<td class="last">
|
||||
<p><em>
|
||||
</em></p>
|
||||
<p>
|
||||
</p>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>AR_3_2</td>
|
||||
<td class="last">
|
||||
<p><em>
|
||||
</em></p>
|
||||
<p>
|
||||
</p>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>AR_5_3</td>
|
||||
<td class="last">
|
||||
<p><em>
|
||||
</em></p>
|
||||
<p>
|
||||
</p>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>AR_5_4</td>
|
||||
<td class="last">
|
||||
<p><em>
|
||||
</em></p>
|
||||
<p>
|
||||
</p>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>AR_1_1</td>
|
||||
<td class="last">
|
||||
<p><em>
|
||||
</em></p>
|
||||
<p>
|
||||
</p>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>AR_1_DOT_85_1</td>
|
||||
<td class="last">
|
||||
<p><em>
|
||||
</em></p>
|
||||
<p>
|
||||
</p>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>AR_2_DOT_39_1</td>
|
||||
<td class="last">
|
||||
<p><em>
|
||||
</em></p>
|
||||
<p>
|
||||
</p>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>AR_ROTATED_3_4</td>
|
||||
<td class="last">
|
||||
<p><em>
|
||||
</em></p>
|
||||
<p>
|
||||
</p>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>AR_ROTATED_9_16</td>
|
||||
<td class="last">
|
||||
<p><em>
|
||||
</em></p>
|
||||
<p>
|
||||
</p>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>AR_ROTATED_2_3</td>
|
||||
<td class="last">
|
||||
<p><em>
|
||||
</em></p>
|
||||
<p>
|
||||
</p>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>AR_ROTATED_3_5</td>
|
||||
<td class="last">
|
||||
<p><em>
|
||||
</em></p>
|
||||
<p>
|
||||
</p>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>AR_ROTATED_4_5</td>
|
||||
<td class="last">
|
||||
<p><em>
|
||||
</em></p>
|
||||
<p>
|
||||
</p>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>AR_ROTATED_1_DOT_85</td>
|
||||
<td class="last">
|
||||
<p><em>
|
||||
</em></p>
|
||||
<p>
|
||||
</p>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>AR_ROTATED_2_DOT_39</td>
|
||||
<td class="last">
|
||||
<p><em>
|
||||
</em></p>
|
||||
<p>
|
||||
</p>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
<h2>Methods</h2>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td class="type">
|
||||
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method___construct">__construct</a>($ratio)
|
||||
<p>
|
||||
</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
float
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_getValue">getValue</a>()
|
||||
<p>Returns the value of the ratio.</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
Integer
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_calculateWidth">calculateWidth</a>(Integer $height, Integer $modulus = 1)
|
||||
<p>Computes the best width for given height and modulus.</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
Integer
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_calculateHeight">calculateHeight</a>(Integer $width, Integer $modulus = 1)
|
||||
<p>Computes the best height for given width and modulus.</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
static <a href="../../FFMpeg/Coordinate/AspectRatio.html"><abbr title="FFMpeg\Coordinate\AspectRatio">AspectRatio</abbr></a>
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_create">create</a>(<a href="../../FFMpeg/Coordinate/Dimension.html"><abbr title="FFMpeg\Coordinate\Dimension">Dimension</abbr></a> $dimension, Boolean $forceStandards = true)
|
||||
<p>Creates a ratio based on Dimension.</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h2>Details</h2>
|
||||
|
||||
<h3 id="method___construct">
|
||||
<div class="location">at line 61</div>
|
||||
<code> public
|
||||
<strong>__construct</strong>($ratio)</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>
|
||||
</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
<h4>Parameters</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td></td>
|
||||
<td>$ratio</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_getValue">
|
||||
<div class="location">at line 71</div>
|
||||
<code> public float
|
||||
<strong>getValue</strong>()</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Returns the value of the ratio.</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td>float</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_calculateWidth">
|
||||
<div class="location">at line 84</div>
|
||||
<code> public Integer
|
||||
<strong>calculateWidth</strong>(Integer $height, Integer $modulus = 1)</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Computes the best width for given height and modulus.</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
<h4>Parameters</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td>Integer</td>
|
||||
<td>$height</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Integer</td>
|
||||
<td>$modulus</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td>Integer</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_calculateHeight">
|
||||
<div class="location">at line 103</div>
|
||||
<code> public Integer
|
||||
<strong>calculateHeight</strong>(Integer $width, Integer $modulus = 1)</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Computes the best height for given width and modulus.</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
<h4>Parameters</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td>Integer</td>
|
||||
<td>$width</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Integer</td>
|
||||
<td>$modulus</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td>Integer</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_create">
|
||||
<div class="location">at line 145</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>
|
||||
<div class="details">
|
||||
<p>Creates a ratio based on Dimension.</p>
|
||||
<p>The strategy parameter forces by default to use standardized ratios. If
|
||||
custom ratio need to be used, disable it.</p>
|
||||
<div class="tags">
|
||||
<h4>Parameters</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="../../FFMpeg/Coordinate/Dimension.html"><abbr title="FFMpeg\Coordinate\Dimension">Dimension</abbr></a></td>
|
||||
<td>$dimension</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Boolean</td>
|
||||
<td>$forceStandards</td>
|
||||
<td>Whether to force or not standard ratios</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="../../FFMpeg/Coordinate/AspectRatio.html"><abbr title="FFMpeg\Coordinate\AspectRatio">AspectRatio</abbr></a></td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h4>Exceptions</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="http://php.net/InvalidArgumentException"><abbr title="InvalidArgumentException">InvalidArgumentException</abbr></a></td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
</div>
|
||||
<div id="footer">
|
||||
Generated by <a href="http://sami.sensiolabs.org/" target="_top">Sami, the API Documentation Generator</a>.
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
|
|
@ -1,223 +0,0 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<meta name="robots" content="index, follow, all" />
|
||||
<title>FFMpeg\Coordinate\Dimension | PHP-FFMpeg API</title>
|
||||
<link rel="stylesheet" type="text/css" href="../../stylesheet.css">
|
||||
</head>
|
||||
<body id="class">
|
||||
<div class="header">
|
||||
<ul>
|
||||
<li><a href="../../classes.html">Classes</a></li>
|
||||
<li><a href="../../namespaces.html">Namespaces</a></li>
|
||||
<li><a href="../../interfaces.html">Interfaces</a></li>
|
||||
<li><a href="../../traits.html">Traits</a></li>
|
||||
<li><a href="../../doc-index.html">Index</a></li>
|
||||
|
||||
</ul>
|
||||
|
||||
<div id="title">PHP-FFMpeg API</div>
|
||||
|
||||
<div class="type">Class</div>
|
||||
<h1><a href="../../FFMpeg/Coordinate.html">FFMpeg\Coordinate</a>\Dimension</h1>
|
||||
</div>
|
||||
<div class="content">
|
||||
<p> class
|
||||
<strong>Dimension</strong></p>
|
||||
|
||||
<div class="description">
|
||||
<p>Dimension object, used for manipulating width and height couples</p>
|
||||
<p>
|
||||
</p>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<h2>Methods</h2>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td class="type">
|
||||
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method___construct">__construct</a>(integer $width, integer $height)
|
||||
<p>
|
||||
</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
integer
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_getWidth">getWidth</a>()
|
||||
<p>Returns width.</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
integer
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_getHeight">getHeight</a>()
|
||||
<p>Returns height.</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
<a href="../../FFMpeg/Coordinate/AspectRatio.html"><abbr title="FFMpeg\Coordinate\AspectRatio">AspectRatio</abbr></a>
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_getRatio">getRatio</a>(<abbr title="FFMpeg\Coordinate\type">type</abbr> $forceStandards = true)
|
||||
<p>Returns the ratio.</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h2>Details</h2>
|
||||
|
||||
<h3 id="method___construct">
|
||||
<div class="location">at line 30</div>
|
||||
<code> public
|
||||
<strong>__construct</strong>(integer $width, integer $height)</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>
|
||||
</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
<h4>Parameters</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td>integer</td>
|
||||
<td>$width</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>integer</td>
|
||||
<td>$height</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
<h4>Exceptions</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="http://php.net/InvalidArgumentException"><abbr title="InvalidArgumentException">InvalidArgumentException</abbr></a></td>
|
||||
<td>when one of the parameteres is invalid</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_getWidth">
|
||||
<div class="location">at line 45</div>
|
||||
<code> public integer
|
||||
<strong>getWidth</strong>()</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Returns width.</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td>integer</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_getHeight">
|
||||
<div class="location">at line 55</div>
|
||||
<code> public integer
|
||||
<strong>getHeight</strong>()</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Returns height.</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td>integer</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_getRatio">
|
||||
<div class="location">at line 67</div>
|
||||
<code> public <a href="../../FFMpeg/Coordinate/AspectRatio.html"><abbr title="FFMpeg\Coordinate\AspectRatio">AspectRatio</abbr></a>
|
||||
<strong>getRatio</strong>(<abbr title="FFMpeg\Coordinate\type">type</abbr> $forceStandards = true)</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Returns the ratio.</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
<h4>Parameters</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><abbr title="FFMpeg\Coordinate\type">type</abbr></td>
|
||||
<td>$forceStandards</td>
|
||||
<td>Whether or not force the use of standards ratios;</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="../../FFMpeg/Coordinate/AspectRatio.html"><abbr title="FFMpeg\Coordinate\AspectRatio">AspectRatio</abbr></a></td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
</div>
|
||||
<div id="footer">
|
||||
Generated by <a href="http://sami.sensiolabs.org/" target="_top">Sami, the API Documentation Generator</a>.
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
|
|
@ -1,123 +0,0 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<meta name="robots" content="index, follow, all" />
|
||||
<title>FFMpeg\Coordinate\FrameRate | PHP-FFMpeg API</title>
|
||||
<link rel="stylesheet" type="text/css" href="../../stylesheet.css">
|
||||
</head>
|
||||
<body id="class">
|
||||
<div class="header">
|
||||
<ul>
|
||||
<li><a href="../../classes.html">Classes</a></li>
|
||||
<li><a href="../../namespaces.html">Namespaces</a></li>
|
||||
<li><a href="../../interfaces.html">Interfaces</a></li>
|
||||
<li><a href="../../traits.html">Traits</a></li>
|
||||
<li><a href="../../doc-index.html">Index</a></li>
|
||||
|
||||
</ul>
|
||||
|
||||
<div id="title">PHP-FFMpeg API</div>
|
||||
|
||||
<div class="type">Class</div>
|
||||
<h1><a href="../../FFMpeg/Coordinate.html">FFMpeg\Coordinate</a>\FrameRate</h1>
|
||||
</div>
|
||||
<div class="content">
|
||||
<p> class
|
||||
<strong>FrameRate</strong></p>
|
||||
|
||||
|
||||
|
||||
|
||||
<h2>Methods</h2>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td class="type">
|
||||
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method___construct">__construct</a>($value)
|
||||
<p>
|
||||
</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
float
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_getValue">getValue</a>()
|
||||
<p>
|
||||
</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h2>Details</h2>
|
||||
|
||||
<h3 id="method___construct">
|
||||
<div class="location">at line 20</div>
|
||||
<code> public
|
||||
<strong>__construct</strong>($value)</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>
|
||||
</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
<h4>Parameters</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td></td>
|
||||
<td>$value</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_getValue">
|
||||
<div class="location">at line 32</div>
|
||||
<code> public float
|
||||
<strong>getValue</strong>()</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>
|
||||
</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td>float</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
</div>
|
||||
<div id="footer">
|
||||
Generated by <a href="http://sami.sensiolabs.org/" target="_top">Sami, the API Documentation Generator</a>.
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
|
|
@ -1,167 +0,0 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<meta name="robots" content="index, follow, all" />
|
||||
<title>FFMpeg\Coordinate\Point | PHP-FFMpeg API</title>
|
||||
<link rel="stylesheet" type="text/css" href="../../stylesheet.css">
|
||||
</head>
|
||||
<body id="class">
|
||||
<div class="header">
|
||||
<ul>
|
||||
<li><a href="../../classes.html">Classes</a></li>
|
||||
<li><a href="../../namespaces.html">Namespaces</a></li>
|
||||
<li><a href="../../interfaces.html">Interfaces</a></li>
|
||||
<li><a href="../../traits.html">Traits</a></li>
|
||||
<li><a href="../../doc-index.html">Index</a></li>
|
||||
|
||||
</ul>
|
||||
|
||||
<div id="title">PHP-FFMpeg API</div>
|
||||
|
||||
<div class="type">Class</div>
|
||||
<h1><a href="../../FFMpeg/Coordinate.html">FFMpeg\Coordinate</a>\Point</h1>
|
||||
</div>
|
||||
<div class="content">
|
||||
<p> class
|
||||
<strong>Point</strong></p>
|
||||
|
||||
|
||||
|
||||
|
||||
<h2>Methods</h2>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td class="type">
|
||||
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method___construct">__construct</a>($x, $y)
|
||||
<p>
|
||||
</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
integer
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_getX">getX</a>()
|
||||
<p>
|
||||
</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
integer
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_getY">getY</a>()
|
||||
<p>
|
||||
</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h2>Details</h2>
|
||||
|
||||
<h3 id="method___construct">
|
||||
<div class="location">at line 19</div>
|
||||
<code> public
|
||||
<strong>__construct</strong>($x, $y)</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>
|
||||
</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
<h4>Parameters</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td></td>
|
||||
<td>$x</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td></td>
|
||||
<td>$y</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_getX">
|
||||
<div class="location">at line 28</div>
|
||||
<code> public integer
|
||||
<strong>getX</strong>()</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>
|
||||
</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td>integer</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_getY">
|
||||
<div class="location">at line 36</div>
|
||||
<code> public integer
|
||||
<strong>getY</strong>()</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>
|
||||
</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td>integer</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
</div>
|
||||
<div id="footer">
|
||||
Generated by <a href="http://sami.sensiolabs.org/" target="_top">Sami, the API Documentation Generator</a>.
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
|
|
@ -1,234 +0,0 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<meta name="robots" content="index, follow, all" />
|
||||
<title>FFMpeg\Coordinate\TimeCode | PHP-FFMpeg API</title>
|
||||
<link rel="stylesheet" type="text/css" href="../../stylesheet.css">
|
||||
</head>
|
||||
<body id="class">
|
||||
<div class="header">
|
||||
<ul>
|
||||
<li><a href="../../classes.html">Classes</a></li>
|
||||
<li><a href="../../namespaces.html">Namespaces</a></li>
|
||||
<li><a href="../../interfaces.html">Interfaces</a></li>
|
||||
<li><a href="../../traits.html">Traits</a></li>
|
||||
<li><a href="../../doc-index.html">Index</a></li>
|
||||
|
||||
</ul>
|
||||
|
||||
<div id="title">PHP-FFMpeg API</div>
|
||||
|
||||
<div class="type">Class</div>
|
||||
<h1><a href="../../FFMpeg/Coordinate.html">FFMpeg\Coordinate</a>\TimeCode</h1>
|
||||
</div>
|
||||
<div class="content">
|
||||
<p> class
|
||||
<strong>TimeCode</strong></p>
|
||||
|
||||
|
||||
|
||||
|
||||
<h2>Methods</h2>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td class="type">
|
||||
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method___construct">__construct</a>($hours, $minutes, $seconds, $frames)
|
||||
<p>
|
||||
</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method___toString">__toString</a>()
|
||||
<p>
|
||||
</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
static <a href="../../FFMpeg/Coordinate/TimeCode.html"><abbr title="FFMpeg\Coordinate\TimeCode">TimeCode</abbr></a>
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_fromString">fromString</a>(string $timecode)
|
||||
<p>Creates timecode from string.</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
static <a href="../../FFMpeg/Coordinate/TimeCode.html"><abbr title="FFMpeg\Coordinate\TimeCode">TimeCode</abbr></a>
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_fromSeconds">fromSeconds</a>(float $quantity)
|
||||
<p>Creates timecode from number of seconds.</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h2>Details</h2>
|
||||
|
||||
<h3 id="method___construct">
|
||||
<div class="location">at line 24</div>
|
||||
<code> public
|
||||
<strong>__construct</strong>($hours, $minutes, $seconds, $frames)</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>
|
||||
</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
<h4>Parameters</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td></td>
|
||||
<td>$hours</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td></td>
|
||||
<td>$minutes</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td></td>
|
||||
<td>$seconds</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td></td>
|
||||
<td>$frames</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method___toString">
|
||||
<div class="location">at line 32</div>
|
||||
<code> public
|
||||
<strong>__toString</strong>()</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>
|
||||
</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_fromString">
|
||||
<div class="location">at line 46</div>
|
||||
<code> static public <a href="../../FFMpeg/Coordinate/TimeCode.html"><abbr title="FFMpeg\Coordinate\TimeCode">TimeCode</abbr></a>
|
||||
<strong>fromString</strong>(string $timecode)</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Creates timecode from string.</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
<h4>Parameters</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td>string</td>
|
||||
<td>$timecode</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="../../FFMpeg/Coordinate/TimeCode.html"><abbr title="FFMpeg\Coordinate\TimeCode">TimeCode</abbr></a></td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h4>Exceptions</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="http://php.net/InvalidArgumentException"><abbr title="InvalidArgumentException">InvalidArgumentException</abbr></a></td>
|
||||
<td>In case an invalid timecode is supplied</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_fromSeconds">
|
||||
<div class="location">at line 74</div>
|
||||
<code> static public <a href="../../FFMpeg/Coordinate/TimeCode.html"><abbr title="FFMpeg\Coordinate\TimeCode">TimeCode</abbr></a>
|
||||
<strong>fromSeconds</strong>(float $quantity)</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Creates timecode from number of seconds.</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
<h4>Parameters</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td>float</td>
|
||||
<td>$quantity</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="../../FFMpeg/Coordinate/TimeCode.html"><abbr title="FFMpeg\Coordinate\TimeCode">TimeCode</abbr></a></td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
</div>
|
||||
<div id="footer">
|
||||
Generated by <a href="http://sami.sensiolabs.org/" target="_top">Sami, the API Documentation Generator</a>.
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
|
|
@ -1,9 +0,0 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<meta name="robots" content="index, follow, all" />
|
||||
<title>FFMpeg\Coordinate | PHP-FFMpeg API</title>
|
||||
<link rel="stylesheet" type="text/css" href="../../stylesheet.css">
|
||||
</head>
|
||||
</html>
|
||||
|
|
@ -1,45 +0,0 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<meta name="robots" content="index, follow, all" />
|
||||
<title>FFMpeg\Driver | PHP-FFMpeg API</title>
|
||||
<link rel="stylesheet" type="text/css" href="../stylesheet.css">
|
||||
</head>
|
||||
<body id="overview">
|
||||
<div class="header">
|
||||
<ul>
|
||||
<li><a href="../classes.html">Classes</a></li>
|
||||
<li><a href="../namespaces.html">Namespaces</a></li>
|
||||
<li><a href="../interfaces.html">Interfaces</a></li>
|
||||
<li><a href="../traits.html">Traits</a></li>
|
||||
<li><a href="../doc-index.html">Index</a></li>
|
||||
|
||||
</ul>
|
||||
|
||||
<div id="title">PHP-FFMpeg API</div>
|
||||
|
||||
<div class="type">Namespace</div>
|
||||
<h1>FFMpeg\Driver</h1>
|
||||
</div>
|
||||
<div class="content">
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="../FFMpeg/Driver/FFMpegDriver.html"><abbr title="FFMpeg\Driver\FFMpegDriver">FFMpegDriver</abbr></a></td>
|
||||
<td class="last">
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><a href="../FFMpeg/Driver/FFProbeDriver.html"><abbr title="FFMpeg\Driver\FFProbeDriver">FFProbeDriver</abbr></a></td>
|
||||
<td class="last">
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
</div>
|
||||
<div id="footer">
|
||||
Generated by <a href="http://sami.sensiolabs.org/" target="_top">Sami, the API Documentation Generator</a>.
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
|
|
@ -1,125 +0,0 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<meta name="robots" content="index, follow, all" />
|
||||
<title>FFMpeg\Driver\FFMpegDriver | PHP-FFMpeg API</title>
|
||||
<link rel="stylesheet" type="text/css" href="../../stylesheet.css">
|
||||
</head>
|
||||
<body id="class">
|
||||
<div class="header">
|
||||
<ul>
|
||||
<li><a href="../../classes.html">Classes</a></li>
|
||||
<li><a href="../../namespaces.html">Namespaces</a></li>
|
||||
<li><a href="../../interfaces.html">Interfaces</a></li>
|
||||
<li><a href="../../traits.html">Traits</a></li>
|
||||
<li><a href="../../doc-index.html">Index</a></li>
|
||||
|
||||
</ul>
|
||||
|
||||
<div id="title">PHP-FFMpeg API</div>
|
||||
|
||||
<div class="type">Class</div>
|
||||
<h1><a href="../../FFMpeg/Driver.html">FFMpeg\Driver</a>\FFMpegDriver</h1>
|
||||
</div>
|
||||
<div class="content">
|
||||
<p> class
|
||||
<strong>FFMpegDriver</strong> extends <abbr title="Alchemy\BinaryDriver\AbstractBinary">AbstractBinary</abbr></p>
|
||||
|
||||
|
||||
|
||||
|
||||
<h2>Methods</h2>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td class="type">
|
||||
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_getName">getName</a>()
|
||||
<p>{@inheritdoc}</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
static <a href="../../FFMpeg/Driver/FFMpegDriver.html"><abbr title="FFMpeg\Driver\FFMpegDriver">FFMpegDriver</abbr></a>
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_create">create</a>(<abbr title="Psr\Log\LoggerInterface">LoggerInterface</abbr> $logger = null, array|<abbr title="Alchemy\BinaryDriver\Configuration">Configuration</abbr> $configuration = array())
|
||||
<p>Creates an FFMpegDriver.</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h2>Details</h2>
|
||||
|
||||
<h3 id="method_getName">
|
||||
<div class="location">at line 26</div>
|
||||
<code> public
|
||||
<strong>getName</strong>()</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>{@inheritdoc}</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_create">
|
||||
<div class="location">at line 39</div>
|
||||
<code> static public <a href="../../FFMpeg/Driver/FFMpegDriver.html"><abbr title="FFMpeg\Driver\FFMpegDriver">FFMpegDriver</abbr></a>
|
||||
<strong>create</strong>(<abbr title="Psr\Log\LoggerInterface">LoggerInterface</abbr> $logger = null, array|<abbr title="Alchemy\BinaryDriver\Configuration">Configuration</abbr> $configuration = array())</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Creates an FFMpegDriver.</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
<h4>Parameters</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><abbr title="Psr\Log\LoggerInterface">LoggerInterface</abbr></td>
|
||||
<td>$logger</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>array|<abbr title="Alchemy\BinaryDriver\Configuration">Configuration</abbr></td>
|
||||
<td>$configuration</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="../../FFMpeg/Driver/FFMpegDriver.html"><abbr title="FFMpeg\Driver\FFMpegDriver">FFMpegDriver</abbr></a></td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
</div>
|
||||
<div id="footer">
|
||||
Generated by <a href="http://sami.sensiolabs.org/" target="_top">Sami, the API Documentation Generator</a>.
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
|
|
@ -1,125 +0,0 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<meta name="robots" content="index, follow, all" />
|
||||
<title>FFMpeg\Driver\FFProbeDriver | PHP-FFMpeg API</title>
|
||||
<link rel="stylesheet" type="text/css" href="../../stylesheet.css">
|
||||
</head>
|
||||
<body id="class">
|
||||
<div class="header">
|
||||
<ul>
|
||||
<li><a href="../../classes.html">Classes</a></li>
|
||||
<li><a href="../../namespaces.html">Namespaces</a></li>
|
||||
<li><a href="../../interfaces.html">Interfaces</a></li>
|
||||
<li><a href="../../traits.html">Traits</a></li>
|
||||
<li><a href="../../doc-index.html">Index</a></li>
|
||||
|
||||
</ul>
|
||||
|
||||
<div id="title">PHP-FFMpeg API</div>
|
||||
|
||||
<div class="type">Class</div>
|
||||
<h1><a href="../../FFMpeg/Driver.html">FFMpeg\Driver</a>\FFProbeDriver</h1>
|
||||
</div>
|
||||
<div class="content">
|
||||
<p> class
|
||||
<strong>FFProbeDriver</strong> extends <abbr title="Alchemy\BinaryDriver\AbstractBinary">AbstractBinary</abbr></p>
|
||||
|
||||
|
||||
|
||||
|
||||
<h2>Methods</h2>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td class="type">
|
||||
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_getName">getName</a>()
|
||||
<p>{@inheritdoc}</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
static <a href="../../FFMpeg/Driver/FFProbeDriver.html"><abbr title="FFMpeg\Driver\FFProbeDriver">FFProbeDriver</abbr></a>
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_create">create</a>(array|<abbr title="Alchemy\BinaryDriver\ConfigurationInterface">ConfigurationInterface</abbr> $configuration, <abbr title="Psr\Log\LoggerInterface">LoggerInterface</abbr> $logger = null)
|
||||
<p>Creates an FFProbeDriver.</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h2>Details</h2>
|
||||
|
||||
<h3 id="method_getName">
|
||||
<div class="location">at line 26</div>
|
||||
<code> public
|
||||
<strong>getName</strong>()</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>{@inheritdoc}</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_create">
|
||||
<div class="location">at line 39</div>
|
||||
<code> static public <a href="../../FFMpeg/Driver/FFProbeDriver.html"><abbr title="FFMpeg\Driver\FFProbeDriver">FFProbeDriver</abbr></a>
|
||||
<strong>create</strong>(array|<abbr title="Alchemy\BinaryDriver\ConfigurationInterface">ConfigurationInterface</abbr> $configuration, <abbr title="Psr\Log\LoggerInterface">LoggerInterface</abbr> $logger = null)</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Creates an FFProbeDriver.</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
<h4>Parameters</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td>array|<abbr title="Alchemy\BinaryDriver\ConfigurationInterface">ConfigurationInterface</abbr></td>
|
||||
<td>$configuration</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><abbr title="Psr\Log\LoggerInterface">LoggerInterface</abbr></td>
|
||||
<td>$logger</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="../../FFMpeg/Driver/FFProbeDriver.html"><abbr title="FFMpeg\Driver\FFProbeDriver">FFProbeDriver</abbr></a></td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
</div>
|
||||
<div id="footer">
|
||||
Generated by <a href="http://sami.sensiolabs.org/" target="_top">Sami, the API Documentation Generator</a>.
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
|
|
@ -1,9 +0,0 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<meta name="robots" content="index, follow, all" />
|
||||
<title>FFMpeg\Driver | PHP-FFMpeg API</title>
|
||||
<link rel="stylesheet" type="text/css" href="../../stylesheet.css">
|
||||
</head>
|
||||
</html>
|
||||
|
|
@ -1,63 +0,0 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<meta name="robots" content="index, follow, all" />
|
||||
<title>FFMpeg\Exception | PHP-FFMpeg API</title>
|
||||
<link rel="stylesheet" type="text/css" href="../stylesheet.css">
|
||||
</head>
|
||||
<body id="overview">
|
||||
<div class="header">
|
||||
<ul>
|
||||
<li><a href="../classes.html">Classes</a></li>
|
||||
<li><a href="../namespaces.html">Namespaces</a></li>
|
||||
<li><a href="../interfaces.html">Interfaces</a></li>
|
||||
<li><a href="../traits.html">Traits</a></li>
|
||||
<li><a href="../doc-index.html">Index</a></li>
|
||||
|
||||
</ul>
|
||||
|
||||
<div id="title">PHP-FFMpeg API</div>
|
||||
|
||||
<div class="type">Namespace</div>
|
||||
<h1>FFMpeg\Exception</h1>
|
||||
</div>
|
||||
<div class="content">
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="../FFMpeg/Exception/ExecutableNotFoundException.html"><abbr title="FFMpeg\Exception\ExecutableNotFoundException">ExecutableNotFoundException</abbr></a></td>
|
||||
<td class="last">
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><a href="../FFMpeg/Exception/InvalidArgumentException.html"><abbr title="FFMpeg\Exception\InvalidArgumentException">InvalidArgumentException</abbr></a></td>
|
||||
<td class="last">
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><a href="../FFMpeg/Exception/LogicException.html"><abbr title="FFMpeg\Exception\LogicException">LogicException</abbr></a></td>
|
||||
<td class="last">
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><a href="../FFMpeg/Exception/RuntimeException.html"><abbr title="FFMpeg\Exception\RuntimeException">RuntimeException</abbr></a></td>
|
||||
<td class="last">
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
<h2>Interfaces</h2>
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="../FFMpeg/Exception/ExceptionInterface.html"><abbr title="FFMpeg\Exception\ExceptionInterface">ExceptionInterface</abbr></a></td>
|
||||
<td class="last">
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
</div>
|
||||
<div id="footer">
|
||||
Generated by <a href="http://sami.sensiolabs.org/" target="_top">Sami, the API Documentation Generator</a>.
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
|
|
@ -1,37 +0,0 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<meta name="robots" content="index, follow, all" />
|
||||
<title>FFMpeg\Exception\ExceptionInterface | PHP-FFMpeg API</title>
|
||||
<link rel="stylesheet" type="text/css" href="../../stylesheet.css">
|
||||
</head>
|
||||
<body id="class">
|
||||
<div class="header">
|
||||
<ul>
|
||||
<li><a href="../../classes.html">Classes</a></li>
|
||||
<li><a href="../../namespaces.html">Namespaces</a></li>
|
||||
<li><a href="../../interfaces.html">Interfaces</a></li>
|
||||
<li><a href="../../traits.html">Traits</a></li>
|
||||
<li><a href="../../doc-index.html">Index</a></li>
|
||||
|
||||
</ul>
|
||||
|
||||
<div id="title">PHP-FFMpeg API</div>
|
||||
|
||||
<div class="type">Interface</div>
|
||||
<h1><a href="../../FFMpeg/Exception.html">FFMpeg\Exception</a>\ExceptionInterface</h1>
|
||||
</div>
|
||||
<div class="content">
|
||||
<p> interface
|
||||
<strong>ExceptionInterface</strong></p>
|
||||
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
<div id="footer">
|
||||
Generated by <a href="http://sami.sensiolabs.org/" target="_top">Sami, the API Documentation Generator</a>.
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
|
|
@ -1,37 +0,0 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<meta name="robots" content="index, follow, all" />
|
||||
<title>FFMpeg\Exception\ExecutableNotFoundException | PHP-FFMpeg API</title>
|
||||
<link rel="stylesheet" type="text/css" href="../../stylesheet.css">
|
||||
</head>
|
||||
<body id="class">
|
||||
<div class="header">
|
||||
<ul>
|
||||
<li><a href="../../classes.html">Classes</a></li>
|
||||
<li><a href="../../namespaces.html">Namespaces</a></li>
|
||||
<li><a href="../../interfaces.html">Interfaces</a></li>
|
||||
<li><a href="../../traits.html">Traits</a></li>
|
||||
<li><a href="../../doc-index.html">Index</a></li>
|
||||
|
||||
</ul>
|
||||
|
||||
<div id="title">PHP-FFMpeg API</div>
|
||||
|
||||
<div class="type">Class</div>
|
||||
<h1><a href="../../FFMpeg/Exception.html">FFMpeg\Exception</a>\ExecutableNotFoundException</h1>
|
||||
</div>
|
||||
<div class="content">
|
||||
<p> class
|
||||
<strong>ExecutableNotFoundException</strong> extends <a href="../../FFMpeg/Exception/RuntimeException.html"><abbr title="FFMpeg\Exception\RuntimeException">RuntimeException</abbr></a></p>
|
||||
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
<div id="footer">
|
||||
Generated by <a href="http://sami.sensiolabs.org/" target="_top">Sami, the API Documentation Generator</a>.
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
|
|
@ -1,38 +0,0 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<meta name="robots" content="index, follow, all" />
|
||||
<title>FFMpeg\Exception\InvalidArgumentException | PHP-FFMpeg API</title>
|
||||
<link rel="stylesheet" type="text/css" href="../../stylesheet.css">
|
||||
</head>
|
||||
<body id="class">
|
||||
<div class="header">
|
||||
<ul>
|
||||
<li><a href="../../classes.html">Classes</a></li>
|
||||
<li><a href="../../namespaces.html">Namespaces</a></li>
|
||||
<li><a href="../../interfaces.html">Interfaces</a></li>
|
||||
<li><a href="../../traits.html">Traits</a></li>
|
||||
<li><a href="../../doc-index.html">Index</a></li>
|
||||
|
||||
</ul>
|
||||
|
||||
<div id="title">PHP-FFMpeg API</div>
|
||||
|
||||
<div class="type">Class</div>
|
||||
<h1><a href="../../FFMpeg/Exception.html">FFMpeg\Exception</a>\InvalidArgumentException</h1>
|
||||
</div>
|
||||
<div class="content">
|
||||
<p> class
|
||||
<strong>InvalidArgumentException</strong> extends <a href="http://php.net/InvalidArgumentException"><abbr title="InvalidArgumentException">InvalidArgumentException</abbr></a> implements
|
||||
<a href="../../FFMpeg/Exception/ExceptionInterface.html"><abbr title="FFMpeg\Exception\ExceptionInterface">ExceptionInterface</abbr></a></p>
|
||||
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
<div id="footer">
|
||||
Generated by <a href="http://sami.sensiolabs.org/" target="_top">Sami, the API Documentation Generator</a>.
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
|
|
@ -1,38 +0,0 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<meta name="robots" content="index, follow, all" />
|
||||
<title>FFMpeg\Exception\LogicException | PHP-FFMpeg API</title>
|
||||
<link rel="stylesheet" type="text/css" href="../../stylesheet.css">
|
||||
</head>
|
||||
<body id="class">
|
||||
<div class="header">
|
||||
<ul>
|
||||
<li><a href="../../classes.html">Classes</a></li>
|
||||
<li><a href="../../namespaces.html">Namespaces</a></li>
|
||||
<li><a href="../../interfaces.html">Interfaces</a></li>
|
||||
<li><a href="../../traits.html">Traits</a></li>
|
||||
<li><a href="../../doc-index.html">Index</a></li>
|
||||
|
||||
</ul>
|
||||
|
||||
<div id="title">PHP-FFMpeg API</div>
|
||||
|
||||
<div class="type">Class</div>
|
||||
<h1><a href="../../FFMpeg/Exception.html">FFMpeg\Exception</a>\LogicException</h1>
|
||||
</div>
|
||||
<div class="content">
|
||||
<p> class
|
||||
<strong>LogicException</strong> extends <a href="http://php.net/LogicException"><abbr title="LogicException">LogicException</abbr></a> implements
|
||||
<a href="../../FFMpeg/Exception/ExceptionInterface.html"><abbr title="FFMpeg\Exception\ExceptionInterface">ExceptionInterface</abbr></a></p>
|
||||
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
<div id="footer">
|
||||
Generated by <a href="http://sami.sensiolabs.org/" target="_top">Sami, the API Documentation Generator</a>.
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
|
|
@ -1,38 +0,0 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<meta name="robots" content="index, follow, all" />
|
||||
<title>FFMpeg\Exception\RuntimeException | PHP-FFMpeg API</title>
|
||||
<link rel="stylesheet" type="text/css" href="../../stylesheet.css">
|
||||
</head>
|
||||
<body id="class">
|
||||
<div class="header">
|
||||
<ul>
|
||||
<li><a href="../../classes.html">Classes</a></li>
|
||||
<li><a href="../../namespaces.html">Namespaces</a></li>
|
||||
<li><a href="../../interfaces.html">Interfaces</a></li>
|
||||
<li><a href="../../traits.html">Traits</a></li>
|
||||
<li><a href="../../doc-index.html">Index</a></li>
|
||||
|
||||
</ul>
|
||||
|
||||
<div id="title">PHP-FFMpeg API</div>
|
||||
|
||||
<div class="type">Class</div>
|
||||
<h1><a href="../../FFMpeg/Exception.html">FFMpeg\Exception</a>\RuntimeException</h1>
|
||||
</div>
|
||||
<div class="content">
|
||||
<p> class
|
||||
<strong>RuntimeException</strong> extends <a href="http://php.net/RuntimeException"><abbr title="RuntimeException">RuntimeException</abbr></a> implements
|
||||
<a href="../../FFMpeg/Exception/ExceptionInterface.html"><abbr title="FFMpeg\Exception\ExceptionInterface">ExceptionInterface</abbr></a></p>
|
||||
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
<div id="footer">
|
||||
Generated by <a href="http://sami.sensiolabs.org/" target="_top">Sami, the API Documentation Generator</a>.
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
|
|
@ -1,9 +0,0 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<meta name="robots" content="index, follow, all" />
|
||||
<title>FFMpeg\Exception | PHP-FFMpeg API</title>
|
||||
<link rel="stylesheet" type="text/css" href="../../stylesheet.css">
|
||||
</head>
|
||||
</html>
|
||||
|
|
@ -1,372 +0,0 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<meta name="robots" content="index, follow, all" />
|
||||
<title>FFMpeg\FFMpeg | PHP-FFMpeg API</title>
|
||||
<link rel="stylesheet" type="text/css" href="../stylesheet.css">
|
||||
</head>
|
||||
<body id="class">
|
||||
<div class="header">
|
||||
<ul>
|
||||
<li><a href="../classes.html">Classes</a></li>
|
||||
<li><a href="../namespaces.html">Namespaces</a></li>
|
||||
<li><a href="../interfaces.html">Interfaces</a></li>
|
||||
<li><a href="../traits.html">Traits</a></li>
|
||||
<li><a href="../doc-index.html">Index</a></li>
|
||||
|
||||
</ul>
|
||||
|
||||
<div id="title">PHP-FFMpeg API</div>
|
||||
|
||||
<div class="type">Class</div>
|
||||
<h1><a href="../FFMpeg.html">FFMpeg</a>\FFMpeg</h1>
|
||||
</div>
|
||||
<div class="content">
|
||||
<p> class
|
||||
<strong>FFMpeg</strong></p>
|
||||
|
||||
|
||||
|
||||
|
||||
<h2>Methods</h2>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td class="type">
|
||||
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method___construct">__construct</a>(<a href="../FFMpeg/Driver/FFMpegDriver.html"><abbr title="FFMpeg\Driver\FFMpegDriver">FFMpegDriver</abbr></a> $ffmpeg, <a href="../FFMpeg/FFProbe.html"><abbr title="FFMpeg\FFProbe">FFProbe</abbr></a> $ffprobe)
|
||||
<p>
|
||||
</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
<a href="../FFMpeg/FFMpeg.html"><abbr title="FFMpeg\FFMpeg">FFMpeg</abbr></a>
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_setFFProbe">setFFProbe</a>(<a href="../FFMpeg/FFProbe.html"><abbr title="FFMpeg\FFProbe">FFProbe</abbr></a> $ffprobe)
|
||||
<p>Sets FFProbe.</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
<a href="../FFMpeg/FFProbe.html"><abbr title="FFMpeg\FFProbe">FFProbe</abbr></a>
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_getFFProbe">getFFProbe</a>()
|
||||
<p>Gets FFProbe.</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
<a href="../FFMpeg/FFMpeg.html"><abbr title="FFMpeg\FFMpeg">FFMpeg</abbr></a>
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_setFFMpegDriver">setFFMpegDriver</a>(<a href="../FFMpeg/Driver/FFMpegDriver.html"><abbr title="FFMpeg\Driver\FFMpegDriver">FFMpegDriver</abbr></a> $ffmpeg)
|
||||
<p>Sets the ffmpeg driver.</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
<a href="../FFMpeg/Driver/FFMpegDriver.html"><abbr title="FFMpeg\Driver\FFMpegDriver">FFMpegDriver</abbr></a>
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_getFFMpegDriver">getFFMpegDriver</a>()
|
||||
<p>Gets the ffmpeg driver.</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
<a href="../FFMpeg/Media/Audio.html"><abbr title="FFMpeg\Media\Audio">Audio</abbr></a>|<a href="../FFMpeg/Media/Video.html"><abbr title="FFMpeg\Media\Video">Video</abbr></a>
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_open">open</a>(string $pathfile)
|
||||
<p>Opens a file in order to be processed.</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
static <a href="../FFMpeg/FFMpeg.html"><abbr title="FFMpeg\FFMpeg">FFMpeg</abbr></a>
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_create">create</a>(array|<abbr title="Alchemy\BinaryDriver\ConfigurationInterface">ConfigurationInterface</abbr> $configuration = array(), <abbr title="Psr\Log\LoggerInterface">LoggerInterface</abbr> $logger = null, <a href="../FFMpeg/FFProbe.html"><abbr title="FFMpeg\FFProbe">FFProbe</abbr></a> $probe = null)
|
||||
<p>Creates a new FFMpeg instance.</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h2>Details</h2>
|
||||
|
||||
<h3 id="method___construct">
|
||||
<div class="location">at line 29</div>
|
||||
<code> public
|
||||
<strong>__construct</strong>(<a href="../FFMpeg/Driver/FFMpegDriver.html"><abbr title="FFMpeg\Driver\FFMpegDriver">FFMpegDriver</abbr></a> $ffmpeg, <a href="../FFMpeg/FFProbe.html"><abbr title="FFMpeg\FFProbe">FFProbe</abbr></a> $ffprobe)</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>
|
||||
</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
<h4>Parameters</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="../FFMpeg/Driver/FFMpegDriver.html"><abbr title="FFMpeg\Driver\FFMpegDriver">FFMpegDriver</abbr></a></td>
|
||||
<td>$ffmpeg</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><a href="../FFMpeg/FFProbe.html"><abbr title="FFMpeg\FFProbe">FFProbe</abbr></a></td>
|
||||
<td>$ffprobe</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_setFFProbe">
|
||||
<div class="location">at line 42</div>
|
||||
<code> public <a href="../FFMpeg/FFMpeg.html"><abbr title="FFMpeg\FFMpeg">FFMpeg</abbr></a>
|
||||
<strong>setFFProbe</strong>(<a href="../FFMpeg/FFProbe.html"><abbr title="FFMpeg\FFProbe">FFProbe</abbr></a> $ffprobe)</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Sets FFProbe.</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
<h4>Parameters</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="../FFMpeg/FFProbe.html"><abbr title="FFMpeg\FFProbe">FFProbe</abbr></a></td>
|
||||
<td>$ffprobe</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="../FFMpeg/FFMpeg.html"><abbr title="FFMpeg\FFMpeg">FFMpeg</abbr></a></td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_getFFProbe">
|
||||
<div class="location">at line 54</div>
|
||||
<code> public <a href="../FFMpeg/FFProbe.html"><abbr title="FFMpeg\FFProbe">FFProbe</abbr></a>
|
||||
<strong>getFFProbe</strong>()</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Gets FFProbe.</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="../FFMpeg/FFProbe.html"><abbr title="FFMpeg\FFProbe">FFProbe</abbr></a></td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_setFFMpegDriver">
|
||||
<div class="location">at line 64</div>
|
||||
<code> public <a href="../FFMpeg/FFMpeg.html"><abbr title="FFMpeg\FFMpeg">FFMpeg</abbr></a>
|
||||
<strong>setFFMpegDriver</strong>(<a href="../FFMpeg/Driver/FFMpegDriver.html"><abbr title="FFMpeg\Driver\FFMpegDriver">FFMpegDriver</abbr></a> $ffmpeg)</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Sets the ffmpeg driver.</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
<h4>Parameters</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="../FFMpeg/Driver/FFMpegDriver.html"><abbr title="FFMpeg\Driver\FFMpegDriver">FFMpegDriver</abbr></a></td>
|
||||
<td>$ffmpeg</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="../FFMpeg/FFMpeg.html"><abbr title="FFMpeg\FFMpeg">FFMpeg</abbr></a></td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_getFFMpegDriver">
|
||||
<div class="location">at line 76</div>
|
||||
<code> public <a href="../FFMpeg/Driver/FFMpegDriver.html"><abbr title="FFMpeg\Driver\FFMpegDriver">FFMpegDriver</abbr></a>
|
||||
<strong>getFFMpegDriver</strong>()</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Gets the ffmpeg driver.</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="../FFMpeg/Driver/FFMpegDriver.html"><abbr title="FFMpeg\Driver\FFMpegDriver">FFMpegDriver</abbr></a></td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_open">
|
||||
<div class="location">at line 90</div>
|
||||
<code> public <a href="../FFMpeg/Media/Audio.html"><abbr title="FFMpeg\Media\Audio">Audio</abbr></a>|<a href="../FFMpeg/Media/Video.html"><abbr title="FFMpeg\Media\Video">Video</abbr></a>
|
||||
<strong>open</strong>(string $pathfile)</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Opens a file in order to be processed.</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
<h4>Parameters</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td>string</td>
|
||||
<td>$pathfile</td>
|
||||
<td>A pathfile</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="../FFMpeg/Media/Audio.html"><abbr title="FFMpeg\Media\Audio">Audio</abbr></a>|<a href="../FFMpeg/Media/Video.html"><abbr title="FFMpeg\Media\Video">Video</abbr></a></td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h4>Exceptions</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="http://php.net/InvalidArgumentException"><abbr title="InvalidArgumentException">InvalidArgumentException</abbr></a></td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_create">
|
||||
<div class="location">at line 114</div>
|
||||
<code> static public <a href="../FFMpeg/FFMpeg.html"><abbr title="FFMpeg\FFMpeg">FFMpeg</abbr></a>
|
||||
<strong>create</strong>(array|<abbr title="Alchemy\BinaryDriver\ConfigurationInterface">ConfigurationInterface</abbr> $configuration = array(), <abbr title="Psr\Log\LoggerInterface">LoggerInterface</abbr> $logger = null, <a href="../FFMpeg/FFProbe.html"><abbr title="FFMpeg\FFProbe">FFProbe</abbr></a> $probe = null)</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Creates a new FFMpeg instance.</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
<h4>Parameters</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td>array|<abbr title="Alchemy\BinaryDriver\ConfigurationInterface">ConfigurationInterface</abbr></td>
|
||||
<td>$configuration</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><abbr title="Psr\Log\LoggerInterface">LoggerInterface</abbr></td>
|
||||
<td>$logger</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><a href="../FFMpeg/FFProbe.html"><abbr title="FFMpeg\FFProbe">FFProbe</abbr></a></td>
|
||||
<td>$probe</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="../FFMpeg/FFMpeg.html"><abbr title="FFMpeg\FFMpeg">FFMpeg</abbr></a></td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
</div>
|
||||
<div id="footer">
|
||||
Generated by <a href="http://sami.sensiolabs.org/" target="_top">Sami, the API Documentation Generator</a>.
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
|
|
@ -1,125 +0,0 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<meta name="robots" content="index, follow, all" />
|
||||
<title>FFMpeg\FFMpegServiceProvider | PHP-FFMpeg API</title>
|
||||
<link rel="stylesheet" type="text/css" href="../stylesheet.css">
|
||||
</head>
|
||||
<body id="class">
|
||||
<div class="header">
|
||||
<ul>
|
||||
<li><a href="../classes.html">Classes</a></li>
|
||||
<li><a href="../namespaces.html">Namespaces</a></li>
|
||||
<li><a href="../interfaces.html">Interfaces</a></li>
|
||||
<li><a href="../traits.html">Traits</a></li>
|
||||
<li><a href="../doc-index.html">Index</a></li>
|
||||
|
||||
</ul>
|
||||
|
||||
<div id="title">PHP-FFMpeg API</div>
|
||||
|
||||
<div class="type">Class</div>
|
||||
<h1><a href="../FFMpeg.html">FFMpeg</a>\FFMpegServiceProvider</h1>
|
||||
</div>
|
||||
<div class="content">
|
||||
<p> class
|
||||
<strong>FFMpegServiceProvider</strong> implements
|
||||
<abbr title="Silex\ServiceProviderInterface">ServiceProviderInterface</abbr></p>
|
||||
|
||||
|
||||
|
||||
|
||||
<h2>Methods</h2>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td class="type">
|
||||
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_register">register</a>(<abbr title="Silex\Application">Application</abbr> $app)
|
||||
<p>
|
||||
</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_boot">boot</a>(<abbr title="Silex\Application">Application</abbr> $app)
|
||||
<p>
|
||||
</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h2>Details</h2>
|
||||
|
||||
<h3 id="method_register">
|
||||
<div class="location">at line 20</div>
|
||||
<code> public
|
||||
<strong>register</strong>(<abbr title="Silex\Application">Application</abbr> $app)</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>
|
||||
</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
<h4>Parameters</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><abbr title="Silex\Application">Application</abbr></td>
|
||||
<td>$app</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_boot">
|
||||
<div class="location">at line 61</div>
|
||||
<code> public
|
||||
<strong>boot</strong>(<abbr title="Silex\Application">Application</abbr> $app)</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>
|
||||
</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
<h4>Parameters</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><abbr title="Silex\Application">Application</abbr></td>
|
||||
<td>$app</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
</div>
|
||||
<div id="footer">
|
||||
Generated by <a href="http://sami.sensiolabs.org/" target="_top">Sami, the API Documentation Generator</a>.
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
|
|
@ -1,736 +0,0 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<meta name="robots" content="index, follow, all" />
|
||||
<title>FFMpeg\FFProbe | PHP-FFMpeg API</title>
|
||||
<link rel="stylesheet" type="text/css" href="../stylesheet.css">
|
||||
</head>
|
||||
<body id="class">
|
||||
<div class="header">
|
||||
<ul>
|
||||
<li><a href="../classes.html">Classes</a></li>
|
||||
<li><a href="../namespaces.html">Namespaces</a></li>
|
||||
<li><a href="../interfaces.html">Interfaces</a></li>
|
||||
<li><a href="../traits.html">Traits</a></li>
|
||||
<li><a href="../doc-index.html">Index</a></li>
|
||||
|
||||
</ul>
|
||||
|
||||
<div id="title">PHP-FFMpeg API</div>
|
||||
|
||||
<div class="type">Class</div>
|
||||
<h1><a href="../FFMpeg.html">FFMpeg</a>\FFProbe</h1>
|
||||
</div>
|
||||
<div class="content">
|
||||
<p> class
|
||||
<strong>FFProbe</strong></p>
|
||||
|
||||
|
||||
<h2>Constants</h2>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td>TYPE_STREAMS</td>
|
||||
<td class="last">
|
||||
<p><em>
|
||||
</em></p>
|
||||
<p>
|
||||
</p>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>TYPE_FORMAT</td>
|
||||
<td class="last">
|
||||
<p><em>
|
||||
</em></p>
|
||||
<p>
|
||||
</p>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
<h2>Methods</h2>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td class="type">
|
||||
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method___construct">__construct</a>(<a href="../FFMpeg/Driver/FFProbeDriver.html"><abbr title="FFMpeg\Driver\FFProbeDriver">FFProbeDriver</abbr></a> $ffprobe, <abbr title="Doctrine\Common\Cache\Cache">Cache</abbr> $cache)
|
||||
<p>
|
||||
</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
<a href="../FFMpeg/FFProbe/OutputParserInterface.html"><abbr title="FFMpeg\FFProbe\OutputParserInterface">OutputParserInterface</abbr></a>
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_getParser">getParser</a>()
|
||||
<p>
|
||||
</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
<a href="../FFMpeg/FFProbe.html"><abbr title="FFMpeg\FFProbe">FFProbe</abbr></a>
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_setParser">setParser</a>(<a href="../FFMpeg/FFProbe/OutputParserInterface.html"><abbr title="FFMpeg\FFProbe\OutputParserInterface">OutputParserInterface</abbr></a> $parser)
|
||||
<p>
|
||||
</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
<a href="../FFMpeg/Driver/FFProbeDriver.html"><abbr title="FFMpeg\Driver\FFProbeDriver">FFProbeDriver</abbr></a>
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_getFFProbeDriver">getFFProbeDriver</a>()
|
||||
<p>
|
||||
</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
<a href="../FFMpeg/FFProbe.html"><abbr title="FFMpeg\FFProbe">FFProbe</abbr></a>
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_setFFProbeDriver">setFFProbeDriver</a>(<a href="../FFMpeg/Driver/FFProbeDriver.html"><abbr title="FFMpeg\Driver\FFProbeDriver">FFProbeDriver</abbr></a> $ffprobe)
|
||||
<p>
|
||||
</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
<a href="../FFMpeg/FFProbe.html"><abbr title="FFMpeg\FFProbe">FFProbe</abbr></a>
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_setOptionsTester">setOptionsTester</a>(<a href="../FFMpeg/FFProbe/OptionsTesterInterface.html"><abbr title="FFMpeg\FFProbe\OptionsTesterInterface">OptionsTesterInterface</abbr></a> $tester)
|
||||
<p>
|
||||
</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
<a href="../FFMpeg/FFProbe/OptionsTesterInterface.html"><abbr title="FFMpeg\FFProbe\OptionsTesterInterface">OptionsTesterInterface</abbr></a>
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_getOptionsTester">getOptionsTester</a>()
|
||||
<p>
|
||||
</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
<a href="../FFMpeg/FFProbe.html"><abbr title="FFMpeg\FFProbe">FFProbe</abbr></a>
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_setCache">setCache</a>(<abbr title="Doctrine\Common\Cache\Cache">Cache</abbr> $cache)
|
||||
<p>
|
||||
</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
<abbr title="Doctrine\Common\Cache\Cache">Cache</abbr>
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_getCache">getCache</a>()
|
||||
<p>
|
||||
</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
<a href="../FFMpeg/FFProbe/MapperInterface.html"><abbr title="FFMpeg\FFProbe\MapperInterface">MapperInterface</abbr></a>
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_getMapper">getMapper</a>()
|
||||
<p>
|
||||
</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
<a href="../FFMpeg/FFProbe.html"><abbr title="FFMpeg\FFProbe">FFProbe</abbr></a>
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_setMapper">setMapper</a>(<a href="../FFMpeg/FFProbe/MapperInterface.html"><abbr title="FFMpeg\FFProbe\MapperInterface">MapperInterface</abbr></a> $mapper)
|
||||
<p>
|
||||
</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
<a href="../FFMpeg/FFProbe/DataMapping/Format.html"><abbr title="FFMpeg\FFProbe\DataMapping\Format">Format</abbr></a>
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_format">format</a>(string $pathfile)
|
||||
<p>
|
||||
</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
<a href="../FFMpeg/FFProbe/DataMapping/StreamCollection.html"><abbr title="FFMpeg\FFProbe\DataMapping\StreamCollection">StreamCollection</abbr></a>
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_streams">streams</a>(string $pathfile)
|
||||
<p>
|
||||
</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
static <a href="../FFMpeg/FFProbe.html"><abbr title="FFMpeg\FFProbe">FFProbe</abbr></a>
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_create">create</a>(array|<abbr title="Alchemy\BinaryDriver\ConfigurationInterface">ConfigurationInterface</abbr> $configuration = array(), <abbr title="Psr\Log\LoggerInterface">LoggerInterface</abbr> $logger = null, <abbr title="Doctrine\Common\Cache\Cache">Cache</abbr> $cache = null)
|
||||
<p>
|
||||
</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h2>Details</h2>
|
||||
|
||||
<h3 id="method___construct">
|
||||
<div class="location">at line 47</div>
|
||||
<code> public
|
||||
<strong>__construct</strong>(<a href="../FFMpeg/Driver/FFProbeDriver.html"><abbr title="FFMpeg\Driver\FFProbeDriver">FFProbeDriver</abbr></a> $ffprobe, <abbr title="Doctrine\Common\Cache\Cache">Cache</abbr> $cache)</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>
|
||||
</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
<h4>Parameters</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="../FFMpeg/Driver/FFProbeDriver.html"><abbr title="FFMpeg\Driver\FFProbeDriver">FFProbeDriver</abbr></a></td>
|
||||
<td>$ffprobe</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><abbr title="Doctrine\Common\Cache\Cache">Cache</abbr></td>
|
||||
<td>$cache</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_getParser">
|
||||
<div class="location">at line 59</div>
|
||||
<code> public <a href="../FFMpeg/FFProbe/OutputParserInterface.html"><abbr title="FFMpeg\FFProbe\OutputParserInterface">OutputParserInterface</abbr></a>
|
||||
<strong>getParser</strong>()</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>
|
||||
</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="../FFMpeg/FFProbe/OutputParserInterface.html"><abbr title="FFMpeg\FFProbe\OutputParserInterface">OutputParserInterface</abbr></a></td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_setParser">
|
||||
<div class="location">at line 69</div>
|
||||
<code> public <a href="../FFMpeg/FFProbe.html"><abbr title="FFMpeg\FFProbe">FFProbe</abbr></a>
|
||||
<strong>setParser</strong>(<a href="../FFMpeg/FFProbe/OutputParserInterface.html"><abbr title="FFMpeg\FFProbe\OutputParserInterface">OutputParserInterface</abbr></a> $parser)</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>
|
||||
</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
<h4>Parameters</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="../FFMpeg/FFProbe/OutputParserInterface.html"><abbr title="FFMpeg\FFProbe\OutputParserInterface">OutputParserInterface</abbr></a></td>
|
||||
<td>$parser</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="../FFMpeg/FFProbe.html"><abbr title="FFMpeg\FFProbe">FFProbe</abbr></a></td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_getFFProbeDriver">
|
||||
<div class="location">at line 79</div>
|
||||
<code> public <a href="../FFMpeg/Driver/FFProbeDriver.html"><abbr title="FFMpeg\Driver\FFProbeDriver">FFProbeDriver</abbr></a>
|
||||
<strong>getFFProbeDriver</strong>()</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>
|
||||
</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="../FFMpeg/Driver/FFProbeDriver.html"><abbr title="FFMpeg\Driver\FFProbeDriver">FFProbeDriver</abbr></a></td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_setFFProbeDriver">
|
||||
<div class="location">at line 89</div>
|
||||
<code> public <a href="../FFMpeg/FFProbe.html"><abbr title="FFMpeg\FFProbe">FFProbe</abbr></a>
|
||||
<strong>setFFProbeDriver</strong>(<a href="../FFMpeg/Driver/FFProbeDriver.html"><abbr title="FFMpeg\Driver\FFProbeDriver">FFProbeDriver</abbr></a> $ffprobe)</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>
|
||||
</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
<h4>Parameters</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="../FFMpeg/Driver/FFProbeDriver.html"><abbr title="FFMpeg\Driver\FFProbeDriver">FFProbeDriver</abbr></a></td>
|
||||
<td>$ffprobe</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="../FFMpeg/FFProbe.html"><abbr title="FFMpeg\FFProbe">FFProbe</abbr></a></td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_setOptionsTester">
|
||||
<div class="location">at line 101</div>
|
||||
<code> public <a href="../FFMpeg/FFProbe.html"><abbr title="FFMpeg\FFProbe">FFProbe</abbr></a>
|
||||
<strong>setOptionsTester</strong>(<a href="../FFMpeg/FFProbe/OptionsTesterInterface.html"><abbr title="FFMpeg\FFProbe\OptionsTesterInterface">OptionsTesterInterface</abbr></a> $tester)</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>
|
||||
</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
<h4>Parameters</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="../FFMpeg/FFProbe/OptionsTesterInterface.html"><abbr title="FFMpeg\FFProbe\OptionsTesterInterface">OptionsTesterInterface</abbr></a></td>
|
||||
<td>$tester</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="../FFMpeg/FFProbe.html"><abbr title="FFMpeg\FFProbe">FFProbe</abbr></a></td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_getOptionsTester">
|
||||
<div class="location">at line 111</div>
|
||||
<code> public <a href="../FFMpeg/FFProbe/OptionsTesterInterface.html"><abbr title="FFMpeg\FFProbe\OptionsTesterInterface">OptionsTesterInterface</abbr></a>
|
||||
<strong>getOptionsTester</strong>()</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>
|
||||
</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="../FFMpeg/FFProbe/OptionsTesterInterface.html"><abbr title="FFMpeg\FFProbe\OptionsTesterInterface">OptionsTesterInterface</abbr></a></td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_setCache">
|
||||
<div class="location">at line 121</div>
|
||||
<code> public <a href="../FFMpeg/FFProbe.html"><abbr title="FFMpeg\FFProbe">FFProbe</abbr></a>
|
||||
<strong>setCache</strong>(<abbr title="Doctrine\Common\Cache\Cache">Cache</abbr> $cache)</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>
|
||||
</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
<h4>Parameters</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><abbr title="Doctrine\Common\Cache\Cache">Cache</abbr></td>
|
||||
<td>$cache</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="../FFMpeg/FFProbe.html"><abbr title="FFMpeg\FFProbe">FFProbe</abbr></a></td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_getCache">
|
||||
<div class="location">at line 131</div>
|
||||
<code> public <abbr title="Doctrine\Common\Cache\Cache">Cache</abbr>
|
||||
<strong>getCache</strong>()</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>
|
||||
</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><abbr title="Doctrine\Common\Cache\Cache">Cache</abbr></td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_getMapper">
|
||||
<div class="location">at line 139</div>
|
||||
<code> public <a href="../FFMpeg/FFProbe/MapperInterface.html"><abbr title="FFMpeg\FFProbe\MapperInterface">MapperInterface</abbr></a>
|
||||
<strong>getMapper</strong>()</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>
|
||||
</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="../FFMpeg/FFProbe/MapperInterface.html"><abbr title="FFMpeg\FFProbe\MapperInterface">MapperInterface</abbr></a></td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_setMapper">
|
||||
<div class="location">at line 149</div>
|
||||
<code> public <a href="../FFMpeg/FFProbe.html"><abbr title="FFMpeg\FFProbe">FFProbe</abbr></a>
|
||||
<strong>setMapper</strong>(<a href="../FFMpeg/FFProbe/MapperInterface.html"><abbr title="FFMpeg\FFProbe\MapperInterface">MapperInterface</abbr></a> $mapper)</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>
|
||||
</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
<h4>Parameters</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="../FFMpeg/FFProbe/MapperInterface.html"><abbr title="FFMpeg\FFProbe\MapperInterface">MapperInterface</abbr></a></td>
|
||||
<td>$mapper</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="../FFMpeg/FFProbe.html"><abbr title="FFMpeg\FFProbe">FFProbe</abbr></a></td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_format">
|
||||
<div class="location">at line 168</div>
|
||||
<code> public <a href="../FFMpeg/FFProbe/DataMapping/Format.html"><abbr title="FFMpeg\FFProbe\DataMapping\Format">Format</abbr></a>
|
||||
<strong>format</strong>(string $pathfile)</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>
|
||||
</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
<h4>Parameters</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td>string</td>
|
||||
<td>$pathfile</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="../FFMpeg/FFProbe/DataMapping/Format.html"><abbr title="FFMpeg\FFProbe\DataMapping\Format">Format</abbr></a></td>
|
||||
<td>A Format object</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h4>Exceptions</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="http://php.net/InvalidArgumentException"><abbr title="InvalidArgumentException">InvalidArgumentException</abbr></a></td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><a href="http://php.net/RuntimeException"><abbr title="RuntimeException">RuntimeException</abbr></a></td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_streams">
|
||||
<div class="location">at line 185</div>
|
||||
<code> public <a href="../FFMpeg/FFProbe/DataMapping/StreamCollection.html"><abbr title="FFMpeg\FFProbe\DataMapping\StreamCollection">StreamCollection</abbr></a>
|
||||
<strong>streams</strong>(string $pathfile)</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>
|
||||
</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
<h4>Parameters</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td>string</td>
|
||||
<td>$pathfile</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="../FFMpeg/FFProbe/DataMapping/StreamCollection.html"><abbr title="FFMpeg\FFProbe\DataMapping\StreamCollection">StreamCollection</abbr></a></td>
|
||||
<td>A collection of streams</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h4>Exceptions</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="http://php.net/InvalidArgumentException"><abbr title="InvalidArgumentException">InvalidArgumentException</abbr></a></td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><a href="http://php.net/RuntimeException"><abbr title="RuntimeException">RuntimeException</abbr></a></td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_create">
|
||||
<div class="location">at line 201</div>
|
||||
<code> static public <a href="../FFMpeg/FFProbe.html"><abbr title="FFMpeg\FFProbe">FFProbe</abbr></a>
|
||||
<strong>create</strong>(array|<abbr title="Alchemy\BinaryDriver\ConfigurationInterface">ConfigurationInterface</abbr> $configuration = array(), <abbr title="Psr\Log\LoggerInterface">LoggerInterface</abbr> $logger = null, <abbr title="Doctrine\Common\Cache\Cache">Cache</abbr> $cache = null)</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>
|
||||
</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
<h4>Parameters</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td>array|<abbr title="Alchemy\BinaryDriver\ConfigurationInterface">ConfigurationInterface</abbr></td>
|
||||
<td>$configuration</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><abbr title="Psr\Log\LoggerInterface">LoggerInterface</abbr></td>
|
||||
<td>$logger</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><abbr title="Doctrine\Common\Cache\Cache">Cache</abbr></td>
|
||||
<td>$cache</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="../FFMpeg/FFProbe.html"><abbr title="FFMpeg\FFProbe">FFProbe</abbr></a></td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
</div>
|
||||
<div id="footer">
|
||||
Generated by <a href="http://sami.sensiolabs.org/" target="_top">Sami, the API Documentation Generator</a>.
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
|
|
@ -1,55 +0,0 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<meta name="robots" content="index, follow, all" />
|
||||
<title>FFMpeg\FFProbe\DataMapping | PHP-FFMpeg API</title>
|
||||
<link rel="stylesheet" type="text/css" href="../../stylesheet.css">
|
||||
</head>
|
||||
<body id="overview">
|
||||
<div class="header">
|
||||
<ul>
|
||||
<li><a href="../../classes.html">Classes</a></li>
|
||||
<li><a href="../../namespaces.html">Namespaces</a></li>
|
||||
<li><a href="../../interfaces.html">Interfaces</a></li>
|
||||
<li><a href="../../traits.html">Traits</a></li>
|
||||
<li><a href="../../doc-index.html">Index</a></li>
|
||||
|
||||
</ul>
|
||||
|
||||
<div id="title">PHP-FFMpeg API</div>
|
||||
|
||||
<div class="type">Namespace</div>
|
||||
<h1>FFMpeg\FFProbe\DataMapping</h1>
|
||||
</div>
|
||||
<div class="content">
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="../../FFMpeg/FFProbe/DataMapping/AbstractData.html"><abbr title="FFMpeg\FFProbe\DataMapping\AbstractData">AbstractData</abbr></a></td>
|
||||
<td class="last">
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><a href="../../FFMpeg/FFProbe/DataMapping/Format.html"><abbr title="FFMpeg\FFProbe\DataMapping\Format">Format</abbr></a></td>
|
||||
<td class="last">
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><a href="../../FFMpeg/FFProbe/DataMapping/Stream.html"><abbr title="FFMpeg\FFProbe\DataMapping\Stream">Stream</abbr></a></td>
|
||||
<td class="last">
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><a href="../../FFMpeg/FFProbe/DataMapping/StreamCollection.html"><abbr title="FFMpeg\FFProbe\DataMapping\StreamCollection">StreamCollection</abbr></a></td>
|
||||
<td class="last">
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
</div>
|
||||
<div id="footer">
|
||||
Generated by <a href="http://sami.sensiolabs.org/" target="_top">Sami, the API Documentation Generator</a>.
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
|
|
@ -1,340 +0,0 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<meta name="robots" content="index, follow, all" />
|
||||
<title>FFMpeg\FFProbe\DataMapping\AbstractData | PHP-FFMpeg API</title>
|
||||
<link rel="stylesheet" type="text/css" href="../../../stylesheet.css">
|
||||
</head>
|
||||
<body id="class">
|
||||
<div class="header">
|
||||
<ul>
|
||||
<li><a href="../../../classes.html">Classes</a></li>
|
||||
<li><a href="../../../namespaces.html">Namespaces</a></li>
|
||||
<li><a href="../../../interfaces.html">Interfaces</a></li>
|
||||
<li><a href="../../../traits.html">Traits</a></li>
|
||||
<li><a href="../../../doc-index.html">Index</a></li>
|
||||
|
||||
</ul>
|
||||
|
||||
<div id="title">PHP-FFMpeg API</div>
|
||||
|
||||
<div class="type">Class</div>
|
||||
<h1><a href="../../../FFMpeg/FFProbe/DataMapping.html">FFMpeg\FFProbe\DataMapping</a>\AbstractData</h1>
|
||||
</div>
|
||||
<div class="content">
|
||||
<p>abstract class
|
||||
<strong>AbstractData</strong> implements
|
||||
<a href="http://php.net/Countable"><abbr title="Countable">Countable</abbr></a></p>
|
||||
|
||||
|
||||
|
||||
|
||||
<h2>Methods</h2>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td class="type">
|
||||
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method___construct">__construct</a>(array $properties)
|
||||
<p>
|
||||
</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
Boolean
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_has">has</a>(string $property)
|
||||
<p>Returns true if data has property.</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
mixed
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_get">get</a>(string $property)
|
||||
<p>Returns the property value given its name.</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
<a href="../../../FFMpeg/FFProbe/DataMapping/AbstractData.html"><abbr title="FFMpeg\FFProbe\DataMapping\AbstractData">AbstractData</abbr></a>
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_set">set</a>(string $property, mixed $value)
|
||||
<p>Sets the property value given its name.</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
array
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_keys">keys</a>()
|
||||
<p>Returns all property names.</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
array
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_all">all</a>()
|
||||
<p>Returns all properties and their values.</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_count">count</a>()
|
||||
<p>{@inheritdoc}</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h2>Details</h2>
|
||||
|
||||
<h3 id="method___construct">
|
||||
<div class="location">at line 20</div>
|
||||
<code> public
|
||||
<strong>__construct</strong>(array $properties)</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>
|
||||
</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
<h4>Parameters</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td>array</td>
|
||||
<td>$properties</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_has">
|
||||
<div class="location">at line 31</div>
|
||||
<code> public Boolean
|
||||
<strong>has</strong>(string $property)</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Returns true if data has property.</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
<h4>Parameters</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td>string</td>
|
||||
<td>$property</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td>Boolean</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_get">
|
||||
<div class="location">at line 44</div>
|
||||
<code> public mixed
|
||||
<strong>get</strong>(string $property)</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Returns the property value given its name.</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
<h4>Parameters</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td>string</td>
|
||||
<td>$property</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td>mixed</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h4>Exceptions</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="http://php.net/InvalidArgumentException"><abbr title="InvalidArgumentException">InvalidArgumentException</abbr></a></td>
|
||||
<td>In case the data does not have the property</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_set">
|
||||
<div class="location">at line 61</div>
|
||||
<code> public <a href="../../../FFMpeg/FFProbe/DataMapping/AbstractData.html"><abbr title="FFMpeg\FFProbe\DataMapping\AbstractData">AbstractData</abbr></a>
|
||||
<strong>set</strong>(string $property, mixed $value)</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Sets the property value given its name.</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
<h4>Parameters</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td>string</td>
|
||||
<td>$property</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>mixed</td>
|
||||
<td>$value</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="../../../FFMpeg/FFProbe/DataMapping/AbstractData.html"><abbr title="FFMpeg\FFProbe\DataMapping\AbstractData">AbstractData</abbr></a></td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_keys">
|
||||
<div class="location">at line 73</div>
|
||||
<code> public array
|
||||
<strong>keys</strong>()</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Returns all property names.</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td>array</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_all">
|
||||
<div class="location">at line 83</div>
|
||||
<code> public array
|
||||
<strong>all</strong>()</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Returns all properties and their values.</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td>array</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_count">
|
||||
<div class="location">at line 91</div>
|
||||
<code> public
|
||||
<strong>count</strong>()</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>{@inheritdoc}</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
</div>
|
||||
<div id="footer">
|
||||
Generated by <a href="http://sami.sensiolabs.org/" target="_top">Sami, the API Documentation Generator</a>.
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
|
|
@ -1,339 +0,0 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<meta name="robots" content="index, follow, all" />
|
||||
<title>FFMpeg\FFProbe\DataMapping\Format | PHP-FFMpeg API</title>
|
||||
<link rel="stylesheet" type="text/css" href="../../../stylesheet.css">
|
||||
</head>
|
||||
<body id="class">
|
||||
<div class="header">
|
||||
<ul>
|
||||
<li><a href="../../../classes.html">Classes</a></li>
|
||||
<li><a href="../../../namespaces.html">Namespaces</a></li>
|
||||
<li><a href="../../../interfaces.html">Interfaces</a></li>
|
||||
<li><a href="../../../traits.html">Traits</a></li>
|
||||
<li><a href="../../../doc-index.html">Index</a></li>
|
||||
|
||||
</ul>
|
||||
|
||||
<div id="title">PHP-FFMpeg API</div>
|
||||
|
||||
<div class="type">Class</div>
|
||||
<h1><a href="../../../FFMpeg/FFProbe/DataMapping.html">FFMpeg\FFProbe\DataMapping</a>\Format</h1>
|
||||
</div>
|
||||
<div class="content">
|
||||
<p> class
|
||||
<strong>Format</strong> extends <a href="../../../FFMpeg/FFProbe/DataMapping/AbstractData.html"><abbr title="FFMpeg\FFProbe\DataMapping\AbstractData">AbstractData</abbr></a></p>
|
||||
|
||||
|
||||
|
||||
|
||||
<h2>Methods</h2>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td class="type">
|
||||
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method___construct">__construct</a>(array $properties)
|
||||
<p>
|
||||
</p>
|
||||
</td>
|
||||
<td><small>from <a href="../../../FFMpeg/FFProbe/DataMapping/AbstractData.html#method___construct"><abbr title="FFMpeg\FFProbe\DataMapping\AbstractData">AbstractData</abbr></a></small></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
Boolean
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_has">has</a>(string $property)
|
||||
<p>Returns true if data has property.</p>
|
||||
</td>
|
||||
<td><small>from <a href="../../../FFMpeg/FFProbe/DataMapping/AbstractData.html#method_has"><abbr title="FFMpeg\FFProbe\DataMapping\AbstractData">AbstractData</abbr></a></small></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
mixed
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_get">get</a>(string $property)
|
||||
<p>Returns the property value given its name.</p>
|
||||
</td>
|
||||
<td><small>from <a href="../../../FFMpeg/FFProbe/DataMapping/AbstractData.html#method_get"><abbr title="FFMpeg\FFProbe\DataMapping\AbstractData">AbstractData</abbr></a></small></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
<a href="../../../FFMpeg/FFProbe/DataMapping/AbstractData.html"><abbr title="FFMpeg\FFProbe\DataMapping\AbstractData">AbstractData</abbr></a>
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_set">set</a>(string $property, mixed $value)
|
||||
<p>Sets the property value given its name.</p>
|
||||
</td>
|
||||
<td><small>from <a href="../../../FFMpeg/FFProbe/DataMapping/AbstractData.html#method_set"><abbr title="FFMpeg\FFProbe\DataMapping\AbstractData">AbstractData</abbr></a></small></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
array
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_keys">keys</a>()
|
||||
<p>Returns all property names.</p>
|
||||
</td>
|
||||
<td><small>from <a href="../../../FFMpeg/FFProbe/DataMapping/AbstractData.html#method_keys"><abbr title="FFMpeg\FFProbe\DataMapping\AbstractData">AbstractData</abbr></a></small></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
array
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_all">all</a>()
|
||||
<p>Returns all properties and their values.</p>
|
||||
</td>
|
||||
<td><small>from <a href="../../../FFMpeg/FFProbe/DataMapping/AbstractData.html#method_all"><abbr title="FFMpeg\FFProbe\DataMapping\AbstractData">AbstractData</abbr></a></small></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_count">count</a>()
|
||||
<p>{@inheritdoc}</p>
|
||||
</td>
|
||||
<td><small>from <a href="../../../FFMpeg/FFProbe/DataMapping/AbstractData.html#method_count"><abbr title="FFMpeg\FFProbe\DataMapping\AbstractData">AbstractData</abbr></a></small></td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h2>Details</h2>
|
||||
|
||||
<h3 id="method___construct">
|
||||
<div class="location">in <a href="../../../FFMpeg/FFProbe/DataMapping/AbstractData.html#method___construct"><abbr title="FFMpeg\FFProbe\DataMapping\AbstractData">AbstractData</abbr></a> at line 20</div>
|
||||
<code> public
|
||||
<strong>__construct</strong>(array $properties)</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>
|
||||
</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
<h4>Parameters</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td>array</td>
|
||||
<td>$properties</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_has">
|
||||
<div class="location">in <a href="../../../FFMpeg/FFProbe/DataMapping/AbstractData.html#method_has"><abbr title="FFMpeg\FFProbe\DataMapping\AbstractData">AbstractData</abbr></a> at line 31</div>
|
||||
<code> public Boolean
|
||||
<strong>has</strong>(string $property)</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Returns true if data has property.</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
<h4>Parameters</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td>string</td>
|
||||
<td>$property</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td>Boolean</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_get">
|
||||
<div class="location">in <a href="../../../FFMpeg/FFProbe/DataMapping/AbstractData.html#method_get"><abbr title="FFMpeg\FFProbe\DataMapping\AbstractData">AbstractData</abbr></a> at line 44</div>
|
||||
<code> public mixed
|
||||
<strong>get</strong>(string $property)</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Returns the property value given its name.</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
<h4>Parameters</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td>string</td>
|
||||
<td>$property</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td>mixed</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h4>Exceptions</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="http://php.net/InvalidArgumentException"><abbr title="InvalidArgumentException">InvalidArgumentException</abbr></a></td>
|
||||
<td>In case the data does not have the property</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_set">
|
||||
<div class="location">in <a href="../../../FFMpeg/FFProbe/DataMapping/AbstractData.html#method_set"><abbr title="FFMpeg\FFProbe\DataMapping\AbstractData">AbstractData</abbr></a> at line 61</div>
|
||||
<code> public <a href="../../../FFMpeg/FFProbe/DataMapping/AbstractData.html"><abbr title="FFMpeg\FFProbe\DataMapping\AbstractData">AbstractData</abbr></a>
|
||||
<strong>set</strong>(string $property, mixed $value)</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Sets the property value given its name.</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
<h4>Parameters</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td>string</td>
|
||||
<td>$property</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>mixed</td>
|
||||
<td>$value</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="../../../FFMpeg/FFProbe/DataMapping/AbstractData.html"><abbr title="FFMpeg\FFProbe\DataMapping\AbstractData">AbstractData</abbr></a></td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_keys">
|
||||
<div class="location">in <a href="../../../FFMpeg/FFProbe/DataMapping/AbstractData.html#method_keys"><abbr title="FFMpeg\FFProbe\DataMapping\AbstractData">AbstractData</abbr></a> at line 73</div>
|
||||
<code> public array
|
||||
<strong>keys</strong>()</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Returns all property names.</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td>array</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_all">
|
||||
<div class="location">in <a href="../../../FFMpeg/FFProbe/DataMapping/AbstractData.html#method_all"><abbr title="FFMpeg\FFProbe\DataMapping\AbstractData">AbstractData</abbr></a> at line 83</div>
|
||||
<code> public array
|
||||
<strong>all</strong>()</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Returns all properties and their values.</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td>array</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_count">
|
||||
<div class="location">in <a href="../../../FFMpeg/FFProbe/DataMapping/AbstractData.html#method_count"><abbr title="FFMpeg\FFProbe\DataMapping\AbstractData">AbstractData</abbr></a> at line 91</div>
|
||||
<code> public
|
||||
<strong>count</strong>()</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>{@inheritdoc}</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
</div>
|
||||
<div id="footer">
|
||||
Generated by <a href="http://sami.sensiolabs.org/" target="_top">Sami, the API Documentation Generator</a>.
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
|
|
@ -1,460 +0,0 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<meta name="robots" content="index, follow, all" />
|
||||
<title>FFMpeg\FFProbe\DataMapping\Stream | PHP-FFMpeg API</title>
|
||||
<link rel="stylesheet" type="text/css" href="../../../stylesheet.css">
|
||||
</head>
|
||||
<body id="class">
|
||||
<div class="header">
|
||||
<ul>
|
||||
<li><a href="../../../classes.html">Classes</a></li>
|
||||
<li><a href="../../../namespaces.html">Namespaces</a></li>
|
||||
<li><a href="../../../interfaces.html">Interfaces</a></li>
|
||||
<li><a href="../../../traits.html">Traits</a></li>
|
||||
<li><a href="../../../doc-index.html">Index</a></li>
|
||||
|
||||
</ul>
|
||||
|
||||
<div id="title">PHP-FFMpeg API</div>
|
||||
|
||||
<div class="type">Class</div>
|
||||
<h1><a href="../../../FFMpeg/FFProbe/DataMapping.html">FFMpeg\FFProbe\DataMapping</a>\Stream</h1>
|
||||
</div>
|
||||
<div class="content">
|
||||
<p> class
|
||||
<strong>Stream</strong> extends <a href="../../../FFMpeg/FFProbe/DataMapping/AbstractData.html"><abbr title="FFMpeg\FFProbe\DataMapping\AbstractData">AbstractData</abbr></a></p>
|
||||
|
||||
|
||||
|
||||
|
||||
<h2>Methods</h2>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td class="type">
|
||||
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method___construct">__construct</a>(array $properties)
|
||||
<p>
|
||||
</p>
|
||||
</td>
|
||||
<td><small>from <a href="../../../FFMpeg/FFProbe/DataMapping/AbstractData.html#method___construct"><abbr title="FFMpeg\FFProbe\DataMapping\AbstractData">AbstractData</abbr></a></small></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
Boolean
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_has">has</a>(string $property)
|
||||
<p>Returns true if data has property.</p>
|
||||
</td>
|
||||
<td><small>from <a href="../../../FFMpeg/FFProbe/DataMapping/AbstractData.html#method_has"><abbr title="FFMpeg\FFProbe\DataMapping\AbstractData">AbstractData</abbr></a></small></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
mixed
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_get">get</a>(string $property)
|
||||
<p>Returns the property value given its name.</p>
|
||||
</td>
|
||||
<td><small>from <a href="../../../FFMpeg/FFProbe/DataMapping/AbstractData.html#method_get"><abbr title="FFMpeg\FFProbe\DataMapping\AbstractData">AbstractData</abbr></a></small></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
<a href="../../../FFMpeg/FFProbe/DataMapping/AbstractData.html"><abbr title="FFMpeg\FFProbe\DataMapping\AbstractData">AbstractData</abbr></a>
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_set">set</a>(string $property, mixed $value)
|
||||
<p>Sets the property value given its name.</p>
|
||||
</td>
|
||||
<td><small>from <a href="../../../FFMpeg/FFProbe/DataMapping/AbstractData.html#method_set"><abbr title="FFMpeg\FFProbe\DataMapping\AbstractData">AbstractData</abbr></a></small></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
array
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_keys">keys</a>()
|
||||
<p>Returns all property names.</p>
|
||||
</td>
|
||||
<td><small>from <a href="../../../FFMpeg/FFProbe/DataMapping/AbstractData.html#method_keys"><abbr title="FFMpeg\FFProbe\DataMapping\AbstractData">AbstractData</abbr></a></small></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
array
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_all">all</a>()
|
||||
<p>Returns all properties and their values.</p>
|
||||
</td>
|
||||
<td><small>from <a href="../../../FFMpeg/FFProbe/DataMapping/AbstractData.html#method_all"><abbr title="FFMpeg\FFProbe\DataMapping\AbstractData">AbstractData</abbr></a></small></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_count">count</a>()
|
||||
<p>{@inheritdoc}</p>
|
||||
</td>
|
||||
<td><small>from <a href="../../../FFMpeg/FFProbe/DataMapping/AbstractData.html#method_count"><abbr title="FFMpeg\FFProbe\DataMapping\AbstractData">AbstractData</abbr></a></small></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
Boolean
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_isAudio">isAudio</a>()
|
||||
<p>Returns true if the stream is an audio stream.</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
Boolean
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_isVideo">isVideo</a>()
|
||||
<p>Returns true if the stream is a video stream.</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
<a href="../../../FFMpeg/Coordinate/Dimension.html"><abbr title="FFMpeg\Coordinate\Dimension">Dimension</abbr></a>
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_getDimensions">getDimensions</a>()
|
||||
<p>Returns the dimension of the video stream.</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h2>Details</h2>
|
||||
|
||||
<h3 id="method___construct">
|
||||
<div class="location">in <a href="../../../FFMpeg/FFProbe/DataMapping/AbstractData.html#method___construct"><abbr title="FFMpeg\FFProbe\DataMapping\AbstractData">AbstractData</abbr></a> at line 20</div>
|
||||
<code> public
|
||||
<strong>__construct</strong>(array $properties)</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>
|
||||
</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
<h4>Parameters</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td>array</td>
|
||||
<td>$properties</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_has">
|
||||
<div class="location">in <a href="../../../FFMpeg/FFProbe/DataMapping/AbstractData.html#method_has"><abbr title="FFMpeg\FFProbe\DataMapping\AbstractData">AbstractData</abbr></a> at line 31</div>
|
||||
<code> public Boolean
|
||||
<strong>has</strong>(string $property)</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Returns true if data has property.</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
<h4>Parameters</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td>string</td>
|
||||
<td>$property</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td>Boolean</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_get">
|
||||
<div class="location">in <a href="../../../FFMpeg/FFProbe/DataMapping/AbstractData.html#method_get"><abbr title="FFMpeg\FFProbe\DataMapping\AbstractData">AbstractData</abbr></a> at line 44</div>
|
||||
<code> public mixed
|
||||
<strong>get</strong>(string $property)</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Returns the property value given its name.</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
<h4>Parameters</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td>string</td>
|
||||
<td>$property</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td>mixed</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h4>Exceptions</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="http://php.net/InvalidArgumentException"><abbr title="InvalidArgumentException">InvalidArgumentException</abbr></a></td>
|
||||
<td>In case the data does not have the property</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_set">
|
||||
<div class="location">in <a href="../../../FFMpeg/FFProbe/DataMapping/AbstractData.html#method_set"><abbr title="FFMpeg\FFProbe\DataMapping\AbstractData">AbstractData</abbr></a> at line 61</div>
|
||||
<code> public <a href="../../../FFMpeg/FFProbe/DataMapping/AbstractData.html"><abbr title="FFMpeg\FFProbe\DataMapping\AbstractData">AbstractData</abbr></a>
|
||||
<strong>set</strong>(string $property, mixed $value)</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Sets the property value given its name.</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
<h4>Parameters</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td>string</td>
|
||||
<td>$property</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>mixed</td>
|
||||
<td>$value</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="../../../FFMpeg/FFProbe/DataMapping/AbstractData.html"><abbr title="FFMpeg\FFProbe\DataMapping\AbstractData">AbstractData</abbr></a></td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_keys">
|
||||
<div class="location">in <a href="../../../FFMpeg/FFProbe/DataMapping/AbstractData.html#method_keys"><abbr title="FFMpeg\FFProbe\DataMapping\AbstractData">AbstractData</abbr></a> at line 73</div>
|
||||
<code> public array
|
||||
<strong>keys</strong>()</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Returns all property names.</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td>array</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_all">
|
||||
<div class="location">in <a href="../../../FFMpeg/FFProbe/DataMapping/AbstractData.html#method_all"><abbr title="FFMpeg\FFProbe\DataMapping\AbstractData">AbstractData</abbr></a> at line 83</div>
|
||||
<code> public array
|
||||
<strong>all</strong>()</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Returns all properties and their values.</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td>array</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_count">
|
||||
<div class="location">in <a href="../../../FFMpeg/FFProbe/DataMapping/AbstractData.html#method_count"><abbr title="FFMpeg\FFProbe\DataMapping\AbstractData">AbstractData</abbr></a> at line 91</div>
|
||||
<code> public
|
||||
<strong>count</strong>()</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>{@inheritdoc}</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_isAudio">
|
||||
<div class="location">at line 25</div>
|
||||
<code> public Boolean
|
||||
<strong>isAudio</strong>()</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Returns true if the stream is an audio stream.</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td>Boolean</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_isVideo">
|
||||
<div class="location">at line 35</div>
|
||||
<code> public Boolean
|
||||
<strong>isVideo</strong>()</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Returns true if the stream is a video stream.</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td>Boolean</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_getDimensions">
|
||||
<div class="location">at line 48</div>
|
||||
<code> public <a href="../../../FFMpeg/Coordinate/Dimension.html"><abbr title="FFMpeg\Coordinate\Dimension">Dimension</abbr></a>
|
||||
<strong>getDimensions</strong>()</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Returns the dimension of the video stream.</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="../../../FFMpeg/Coordinate/Dimension.html"><abbr title="FFMpeg\Coordinate\Dimension">Dimension</abbr></a></td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h4>Exceptions</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="http://php.net/LogicException"><abbr title="LogicException">LogicException</abbr></a></td>
|
||||
<td>In case the stream is not a video stream.</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><a href="http://php.net/RuntimeException"><abbr title="RuntimeException">RuntimeException</abbr></a></td>
|
||||
<td>In case the dimensions can not be extracted.</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
</div>
|
||||
<div id="footer">
|
||||
Generated by <a href="http://sami.sensiolabs.org/" target="_top">Sami, the API Documentation Generator</a>.
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
|
|
@ -1,329 +0,0 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<meta name="robots" content="index, follow, all" />
|
||||
<title>FFMpeg\FFProbe\DataMapping\StreamCollection | PHP-FFMpeg API</title>
|
||||
<link rel="stylesheet" type="text/css" href="../../../stylesheet.css">
|
||||
</head>
|
||||
<body id="class">
|
||||
<div class="header">
|
||||
<ul>
|
||||
<li><a href="../../../classes.html">Classes</a></li>
|
||||
<li><a href="../../../namespaces.html">Namespaces</a></li>
|
||||
<li><a href="../../../interfaces.html">Interfaces</a></li>
|
||||
<li><a href="../../../traits.html">Traits</a></li>
|
||||
<li><a href="../../../doc-index.html">Index</a></li>
|
||||
|
||||
</ul>
|
||||
|
||||
<div id="title">PHP-FFMpeg API</div>
|
||||
|
||||
<div class="type">Class</div>
|
||||
<h1><a href="../../../FFMpeg/FFProbe/DataMapping.html">FFMpeg\FFProbe\DataMapping</a>\StreamCollection</h1>
|
||||
</div>
|
||||
<div class="content">
|
||||
<p> class
|
||||
<strong>StreamCollection</strong> implements
|
||||
<a href="http://php.net/Countable"><abbr title="Countable">Countable</abbr></a>, <a href="http://php.net/IteratorAggregate"><abbr title="IteratorAggregate">IteratorAggregate</abbr></a></p>
|
||||
|
||||
|
||||
|
||||
|
||||
<h2>Methods</h2>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td class="type">
|
||||
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method___construct">__construct</a>(array $streams = array())
|
||||
<p>
|
||||
</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
null|<a href="../../../FFMpeg/FFProbe/DataMapping/Stream.html"><abbr title="FFMpeg\FFProbe\DataMapping\Stream">Stream</abbr></a>
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_first">first</a>()
|
||||
<p>Returns the first stream of the collection, null if the collection is empty.</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
<a href="../../../FFMpeg/FFProbe/DataMapping/StreamCollection.html"><abbr title="FFMpeg\FFProbe\DataMapping\StreamCollection">StreamCollection</abbr></a>
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_add">add</a>(<a href="../../../FFMpeg/FFProbe/DataMapping/Stream.html"><abbr title="FFMpeg\FFProbe\DataMapping\Stream">Stream</abbr></a> $stream)
|
||||
<p>Adds a stream to the collection.</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
<a href="../../../FFMpeg/FFProbe/DataMapping/StreamCollection.html"><abbr title="FFMpeg\FFProbe\DataMapping\StreamCollection">StreamCollection</abbr></a>
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_videos">videos</a>()
|
||||
<p>Returns a new StreamCollection with only video streams.</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
<a href="../../../FFMpeg/FFProbe/DataMapping/StreamCollection.html"><abbr title="FFMpeg\FFProbe\DataMapping\StreamCollection">StreamCollection</abbr></a>
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_audios">audios</a>()
|
||||
<p>Returns a new StreamCollection with only audio streams.</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_count">count</a>()
|
||||
<p>{@inheritdoc}</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
array
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_all">all</a>()
|
||||
<p>Returns the array of contained streams.</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_getIterator">getIterator</a>()
|
||||
<p>{@inheritdoc}</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h2>Details</h2>
|
||||
|
||||
<h3 id="method___construct">
|
||||
<div class="location">at line 18</div>
|
||||
<code> public
|
||||
<strong>__construct</strong>(array $streams = array())</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>
|
||||
</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
<h4>Parameters</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td>array</td>
|
||||
<td>$streams</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_first">
|
||||
<div class="location">at line 29</div>
|
||||
<code> public null|<a href="../../../FFMpeg/FFProbe/DataMapping/Stream.html"><abbr title="FFMpeg\FFProbe\DataMapping\Stream">Stream</abbr></a>
|
||||
<strong>first</strong>()</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Returns the first stream of the collection, null if the collection is empty.</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td>null|<a href="../../../FFMpeg/FFProbe/DataMapping/Stream.html"><abbr title="FFMpeg\FFProbe\DataMapping\Stream">Stream</abbr></a></td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_add">
|
||||
<div class="location">at line 43</div>
|
||||
<code> public <a href="../../../FFMpeg/FFProbe/DataMapping/StreamCollection.html"><abbr title="FFMpeg\FFProbe\DataMapping\StreamCollection">StreamCollection</abbr></a>
|
||||
<strong>add</strong>(<a href="../../../FFMpeg/FFProbe/DataMapping/Stream.html"><abbr title="FFMpeg\FFProbe\DataMapping\Stream">Stream</abbr></a> $stream)</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Adds a stream to the collection.</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
<h4>Parameters</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="../../../FFMpeg/FFProbe/DataMapping/Stream.html"><abbr title="FFMpeg\FFProbe\DataMapping\Stream">Stream</abbr></a></td>
|
||||
<td>$stream</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="../../../FFMpeg/FFProbe/DataMapping/StreamCollection.html"><abbr title="FFMpeg\FFProbe\DataMapping\StreamCollection">StreamCollection</abbr></a></td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_videos">
|
||||
<div class="location">at line 55</div>
|
||||
<code> public <a href="../../../FFMpeg/FFProbe/DataMapping/StreamCollection.html"><abbr title="FFMpeg\FFProbe\DataMapping\StreamCollection">StreamCollection</abbr></a>
|
||||
<strong>videos</strong>()</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Returns a new StreamCollection with only video streams.</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="../../../FFMpeg/FFProbe/DataMapping/StreamCollection.html"><abbr title="FFMpeg\FFProbe\DataMapping\StreamCollection">StreamCollection</abbr></a></td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_audios">
|
||||
<div class="location">at line 67</div>
|
||||
<code> public <a href="../../../FFMpeg/FFProbe/DataMapping/StreamCollection.html"><abbr title="FFMpeg\FFProbe\DataMapping\StreamCollection">StreamCollection</abbr></a>
|
||||
<strong>audios</strong>()</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Returns a new StreamCollection with only audio streams.</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="../../../FFMpeg/FFProbe/DataMapping/StreamCollection.html"><abbr title="FFMpeg\FFProbe\DataMapping\StreamCollection">StreamCollection</abbr></a></td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_count">
|
||||
<div class="location">at line 77</div>
|
||||
<code> public
|
||||
<strong>count</strong>()</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>{@inheritdoc}</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_all">
|
||||
<div class="location">at line 87</div>
|
||||
<code> public array
|
||||
<strong>all</strong>()</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Returns the array of contained streams.</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td>array</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_getIterator">
|
||||
<div class="location">at line 95</div>
|
||||
<code> public
|
||||
<strong>getIterator</strong>()</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>{@inheritdoc}</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
</div>
|
||||
<div id="footer">
|
||||
Generated by <a href="http://sami.sensiolabs.org/" target="_top">Sami, the API Documentation Generator</a>.
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
|
|
@ -1,9 +0,0 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<meta name="robots" content="index, follow, all" />
|
||||
<title>FFMpeg\FFProbe\DataMapping | PHP-FFMpeg API</title>
|
||||
<link rel="stylesheet" type="text/css" href="../../../stylesheet.css">
|
||||
</head>
|
||||
</html>
|
||||
|
|
@ -1,107 +0,0 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<meta name="robots" content="index, follow, all" />
|
||||
<title>FFMpeg\FFProbe\Mapper | PHP-FFMpeg API</title>
|
||||
<link rel="stylesheet" type="text/css" href="../../stylesheet.css">
|
||||
</head>
|
||||
<body id="class">
|
||||
<div class="header">
|
||||
<ul>
|
||||
<li><a href="../../classes.html">Classes</a></li>
|
||||
<li><a href="../../namespaces.html">Namespaces</a></li>
|
||||
<li><a href="../../interfaces.html">Interfaces</a></li>
|
||||
<li><a href="../../traits.html">Traits</a></li>
|
||||
<li><a href="../../doc-index.html">Index</a></li>
|
||||
|
||||
</ul>
|
||||
|
||||
<div id="title">PHP-FFMpeg API</div>
|
||||
|
||||
<div class="type">Class</div>
|
||||
<h1><a href="../../FFMpeg/FFProbe.html">FFMpeg\FFProbe</a>\Mapper</h1>
|
||||
</div>
|
||||
<div class="content">
|
||||
<p> class
|
||||
<strong>Mapper</strong> implements
|
||||
<a href="../../FFMpeg/FFProbe/MapperInterface.html"><abbr title="FFMpeg\FFProbe\MapperInterface">MapperInterface</abbr></a></p>
|
||||
|
||||
|
||||
|
||||
|
||||
<h2>Methods</h2>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td class="type">
|
||||
<abbr title="FFMpeg\FFProbe\Format">Format</abbr>|<abbr title="FFMpeg\FFProbe\Stream">Stream</abbr>
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_map">map</a>(string $type, string $data)
|
||||
<p>Maps data given its type.</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h2>Details</h2>
|
||||
|
||||
<h3 id="method_map">
|
||||
<div class="location">at line 25</div>
|
||||
<code> public <abbr title="FFMpeg\FFProbe\Format">Format</abbr>|<abbr title="FFMpeg\FFProbe\Stream">Stream</abbr>
|
||||
<strong>map</strong>(string $type, string $data)</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Maps data given its type.</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
<h4>Parameters</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td>string</td>
|
||||
<td>$type</td>
|
||||
<td>One of FFProbe::TYPE_* constant</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>string</td>
|
||||
<td>$data</td>
|
||||
<td>The data</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><abbr title="FFMpeg\FFProbe\Format">Format</abbr>|<abbr title="FFMpeg\FFProbe\Stream">Stream</abbr></td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h4>Exceptions</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="http://php.net/InvalidArgumentException"><abbr title="InvalidArgumentException">InvalidArgumentException</abbr></a></td>
|
||||
<td>In case the type is not supported</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
</div>
|
||||
<div id="footer">
|
||||
Generated by <a href="http://sami.sensiolabs.org/" target="_top">Sami, the API Documentation Generator</a>.
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
|
|
@ -1,106 +0,0 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<meta name="robots" content="index, follow, all" />
|
||||
<title>FFMpeg\FFProbe\MapperInterface | PHP-FFMpeg API</title>
|
||||
<link rel="stylesheet" type="text/css" href="../../stylesheet.css">
|
||||
</head>
|
||||
<body id="class">
|
||||
<div class="header">
|
||||
<ul>
|
||||
<li><a href="../../classes.html">Classes</a></li>
|
||||
<li><a href="../../namespaces.html">Namespaces</a></li>
|
||||
<li><a href="../../interfaces.html">Interfaces</a></li>
|
||||
<li><a href="../../traits.html">Traits</a></li>
|
||||
<li><a href="../../doc-index.html">Index</a></li>
|
||||
|
||||
</ul>
|
||||
|
||||
<div id="title">PHP-FFMpeg API</div>
|
||||
|
||||
<div class="type">Interface</div>
|
||||
<h1><a href="../../FFMpeg/FFProbe.html">FFMpeg\FFProbe</a>\MapperInterface</h1>
|
||||
</div>
|
||||
<div class="content">
|
||||
<p> interface
|
||||
<strong>MapperInterface</strong></p>
|
||||
|
||||
|
||||
|
||||
|
||||
<h2>Methods</h2>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td class="type">
|
||||
<abbr title="FFMpeg\FFProbe\Format">Format</abbr>|<abbr title="FFMpeg\FFProbe\Stream">Stream</abbr>
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_map">map</a>(string $type, string $data)
|
||||
<p>Maps data given its type.</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h2>Details</h2>
|
||||
|
||||
<h3 id="method_map">
|
||||
<div class="location">at line 26</div>
|
||||
<code> public <abbr title="FFMpeg\FFProbe\Format">Format</abbr>|<abbr title="FFMpeg\FFProbe\Stream">Stream</abbr>
|
||||
<strong>map</strong>(string $type, string $data)</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Maps data given its type.</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
<h4>Parameters</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td>string</td>
|
||||
<td>$type</td>
|
||||
<td>One of FFProbe::TYPE_* constant</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>string</td>
|
||||
<td>$data</td>
|
||||
<td>The data</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><abbr title="FFMpeg\FFProbe\Format">Format</abbr>|<abbr title="FFMpeg\FFProbe\Stream">Stream</abbr></td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h4>Exceptions</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="http://php.net/InvalidArgumentException"><abbr title="InvalidArgumentException">InvalidArgumentException</abbr></a></td>
|
||||
<td>In case the type is not supported</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
</div>
|
||||
<div id="footer">
|
||||
Generated by <a href="http://sami.sensiolabs.org/" target="_top">Sami, the API Documentation Generator</a>.
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
|
|
@ -1,139 +0,0 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<meta name="robots" content="index, follow, all" />
|
||||
<title>FFMpeg\FFProbe\OptionsTester | PHP-FFMpeg API</title>
|
||||
<link rel="stylesheet" type="text/css" href="../../stylesheet.css">
|
||||
</head>
|
||||
<body id="class">
|
||||
<div class="header">
|
||||
<ul>
|
||||
<li><a href="../../classes.html">Classes</a></li>
|
||||
<li><a href="../../namespaces.html">Namespaces</a></li>
|
||||
<li><a href="../../interfaces.html">Interfaces</a></li>
|
||||
<li><a href="../../traits.html">Traits</a></li>
|
||||
<li><a href="../../doc-index.html">Index</a></li>
|
||||
|
||||
</ul>
|
||||
|
||||
<div id="title">PHP-FFMpeg API</div>
|
||||
|
||||
<div class="type">Class</div>
|
||||
<h1><a href="../../FFMpeg/FFProbe.html">FFMpeg\FFProbe</a>\OptionsTester</h1>
|
||||
</div>
|
||||
<div class="content">
|
||||
<p> class
|
||||
<strong>OptionsTester</strong> implements
|
||||
<a href="../../FFMpeg/FFProbe/OptionsTesterInterface.html"><abbr title="FFMpeg\FFProbe\OptionsTesterInterface">OptionsTesterInterface</abbr></a></p>
|
||||
|
||||
|
||||
|
||||
|
||||
<h2>Methods</h2>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td class="type">
|
||||
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method___construct">__construct</a>(<a href="../../FFMpeg/Driver/FFProbeDriver.html"><abbr title="FFMpeg\Driver\FFProbeDriver">FFProbeDriver</abbr></a> $ffprobe, <abbr title="Doctrine\Common\Cache\Cache">Cache</abbr> $cache)
|
||||
<p>
|
||||
</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
Boolean
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_has">has</a>(string $name)
|
||||
<p>Tells if the given option is supported by ffprobe.</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h2>Details</h2>
|
||||
|
||||
<h3 id="method___construct">
|
||||
<div class="location">at line 26</div>
|
||||
<code> public
|
||||
<strong>__construct</strong>(<a href="../../FFMpeg/Driver/FFProbeDriver.html"><abbr title="FFMpeg\Driver\FFProbeDriver">FFProbeDriver</abbr></a> $ffprobe, <abbr title="Doctrine\Common\Cache\Cache">Cache</abbr> $cache)</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>
|
||||
</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
<h4>Parameters</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="../../FFMpeg/Driver/FFProbeDriver.html"><abbr title="FFMpeg\Driver\FFProbeDriver">FFProbeDriver</abbr></a></td>
|
||||
<td>$ffprobe</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><abbr title="Doctrine\Common\Cache\Cache">Cache</abbr></td>
|
||||
<td>$cache</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_has">
|
||||
<div class="location">at line 35</div>
|
||||
<code> public Boolean
|
||||
<strong>has</strong>(string $name)</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Tells if the given option is supported by ffprobe.</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
<h4>Parameters</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td>string</td>
|
||||
<td>$name</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td>Boolean</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
</div>
|
||||
<div id="footer">
|
||||
Generated by <a href="http://sami.sensiolabs.org/" target="_top">Sami, the API Documentation Generator</a>.
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
|
|
@ -1,93 +0,0 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<meta name="robots" content="index, follow, all" />
|
||||
<title>FFMpeg\FFProbe\OptionsTesterInterface | PHP-FFMpeg API</title>
|
||||
<link rel="stylesheet" type="text/css" href="../../stylesheet.css">
|
||||
</head>
|
||||
<body id="class">
|
||||
<div class="header">
|
||||
<ul>
|
||||
<li><a href="../../classes.html">Classes</a></li>
|
||||
<li><a href="../../namespaces.html">Namespaces</a></li>
|
||||
<li><a href="../../interfaces.html">Interfaces</a></li>
|
||||
<li><a href="../../traits.html">Traits</a></li>
|
||||
<li><a href="../../doc-index.html">Index</a></li>
|
||||
|
||||
</ul>
|
||||
|
||||
<div id="title">PHP-FFMpeg API</div>
|
||||
|
||||
<div class="type">Interface</div>
|
||||
<h1><a href="../../FFMpeg/FFProbe.html">FFMpeg\FFProbe</a>\OptionsTesterInterface</h1>
|
||||
</div>
|
||||
<div class="content">
|
||||
<p> interface
|
||||
<strong>OptionsTesterInterface</strong></p>
|
||||
|
||||
|
||||
|
||||
|
||||
<h2>Methods</h2>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td class="type">
|
||||
Boolean
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_has">has</a>(string $name)
|
||||
<p>Tells if the given option is supported by ffprobe.</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h2>Details</h2>
|
||||
|
||||
<h3 id="method_has">
|
||||
<div class="location">at line 23</div>
|
||||
<code> public Boolean
|
||||
<strong>has</strong>(string $name)</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Tells if the given option is supported by ffprobe.</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
<h4>Parameters</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td>string</td>
|
||||
<td>$name</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td>Boolean</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
</div>
|
||||
<div id="footer">
|
||||
Generated by <a href="http://sami.sensiolabs.org/" target="_top">Sami, the API Documentation Generator</a>.
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
|
|
@ -1,107 +0,0 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<meta name="robots" content="index, follow, all" />
|
||||
<title>FFMpeg\FFProbe\OutputParser | PHP-FFMpeg API</title>
|
||||
<link rel="stylesheet" type="text/css" href="../../stylesheet.css">
|
||||
</head>
|
||||
<body id="class">
|
||||
<div class="header">
|
||||
<ul>
|
||||
<li><a href="../../classes.html">Classes</a></li>
|
||||
<li><a href="../../namespaces.html">Namespaces</a></li>
|
||||
<li><a href="../../interfaces.html">Interfaces</a></li>
|
||||
<li><a href="../../traits.html">Traits</a></li>
|
||||
<li><a href="../../doc-index.html">Index</a></li>
|
||||
|
||||
</ul>
|
||||
|
||||
<div id="title">PHP-FFMpeg API</div>
|
||||
|
||||
<div class="type">Class</div>
|
||||
<h1><a href="../../FFMpeg/FFProbe.html">FFMpeg\FFProbe</a>\OutputParser</h1>
|
||||
</div>
|
||||
<div class="content">
|
||||
<p> class
|
||||
<strong>OutputParser</strong> implements
|
||||
<a href="../../FFMpeg/FFProbe/OutputParserInterface.html"><abbr title="FFMpeg\FFProbe\OutputParserInterface">OutputParserInterface</abbr></a></p>
|
||||
|
||||
|
||||
|
||||
|
||||
<h2>Methods</h2>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td class="type">
|
||||
array
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_parse">parse</a>(string $type, string $data)
|
||||
<p>Parses ffprobe raw output.</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h2>Details</h2>
|
||||
|
||||
<h3 id="method_parse">
|
||||
<div class="location">at line 22</div>
|
||||
<code> public array
|
||||
<strong>parse</strong>(string $type, string $data)</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Parses ffprobe raw output.</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
<h4>Parameters</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td>string</td>
|
||||
<td>$type</td>
|
||||
<td>One of FFProbe::TYPE_* constant</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>string</td>
|
||||
<td>$data</td>
|
||||
<td>The data</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td>array</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h4>Exceptions</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="http://php.net/InvalidArgumentException"><abbr title="InvalidArgumentException">InvalidArgumentException</abbr></a></td>
|
||||
<td>In case the type is not supported</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
</div>
|
||||
<div id="footer">
|
||||
Generated by <a href="http://sami.sensiolabs.org/" target="_top">Sami, the API Documentation Generator</a>.
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
|
|
@ -1,106 +0,0 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<meta name="robots" content="index, follow, all" />
|
||||
<title>FFMpeg\FFProbe\OutputParserInterface | PHP-FFMpeg API</title>
|
||||
<link rel="stylesheet" type="text/css" href="../../stylesheet.css">
|
||||
</head>
|
||||
<body id="class">
|
||||
<div class="header">
|
||||
<ul>
|
||||
<li><a href="../../classes.html">Classes</a></li>
|
||||
<li><a href="../../namespaces.html">Namespaces</a></li>
|
||||
<li><a href="../../interfaces.html">Interfaces</a></li>
|
||||
<li><a href="../../traits.html">Traits</a></li>
|
||||
<li><a href="../../doc-index.html">Index</a></li>
|
||||
|
||||
</ul>
|
||||
|
||||
<div id="title">PHP-FFMpeg API</div>
|
||||
|
||||
<div class="type">Interface</div>
|
||||
<h1><a href="../../FFMpeg/FFProbe.html">FFMpeg\FFProbe</a>\OutputParserInterface</h1>
|
||||
</div>
|
||||
<div class="content">
|
||||
<p> interface
|
||||
<strong>OutputParserInterface</strong></p>
|
||||
|
||||
|
||||
|
||||
|
||||
<h2>Methods</h2>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td class="type">
|
||||
array
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_parse">parse</a>(string $type, string $data)
|
||||
<p>Parses ffprobe raw output.</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h2>Details</h2>
|
||||
|
||||
<h3 id="method_parse">
|
||||
<div class="location">at line 26</div>
|
||||
<code> public array
|
||||
<strong>parse</strong>(string $type, string $data)</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Parses ffprobe raw output.</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
<h4>Parameters</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td>string</td>
|
||||
<td>$type</td>
|
||||
<td>One of FFProbe::TYPE_* constant</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>string</td>
|
||||
<td>$data</td>
|
||||
<td>The data</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td>array</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h4>Exceptions</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="http://php.net/InvalidArgumentException"><abbr title="InvalidArgumentException">InvalidArgumentException</abbr></a></td>
|
||||
<td>In case the type is not supported</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
</div>
|
||||
<div id="footer">
|
||||
Generated by <a href="http://sami.sensiolabs.org/" target="_top">Sami, the API Documentation Generator</a>.
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
|
|
@ -1,9 +0,0 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<meta name="robots" content="index, follow, all" />
|
||||
<title>FFMpeg\FFProbe | PHP-FFMpeg API</title>
|
||||
<link rel="stylesheet" type="text/css" href="../../stylesheet.css">
|
||||
</head>
|
||||
</html>
|
||||
|
|
@ -1,48 +0,0 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<meta name="robots" content="index, follow, all" />
|
||||
<title>FFMpeg\Filters | PHP-FFMpeg API</title>
|
||||
<link rel="stylesheet" type="text/css" href="../stylesheet.css">
|
||||
</head>
|
||||
<body id="overview">
|
||||
<div class="header">
|
||||
<ul>
|
||||
<li><a href="../classes.html">Classes</a></li>
|
||||
<li><a href="../namespaces.html">Namespaces</a></li>
|
||||
<li><a href="../interfaces.html">Interfaces</a></li>
|
||||
<li><a href="../traits.html">Traits</a></li>
|
||||
<li><a href="../doc-index.html">Index</a></li>
|
||||
|
||||
</ul>
|
||||
|
||||
<div id="title">PHP-FFMpeg API</div>
|
||||
|
||||
<div class="type">Namespace</div>
|
||||
<h1>FFMpeg\Filters</h1>
|
||||
</div>
|
||||
<div class="content">
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="../FFMpeg/Filters/FiltersCollection.html"><abbr title="FFMpeg\Filters\FiltersCollection">FiltersCollection</abbr></a></td>
|
||||
<td class="last">
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
<h2>Interfaces</h2>
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="../FFMpeg/Filters/FilterInterface.html"><abbr title="FFMpeg\Filters\FilterInterface">FilterInterface</abbr></a></td>
|
||||
<td class="last">
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
</div>
|
||||
<div id="footer">
|
||||
Generated by <a href="http://sami.sensiolabs.org/" target="_top">Sami, the API Documentation Generator</a>.
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
|
|
@ -1,58 +0,0 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<meta name="robots" content="index, follow, all" />
|
||||
<title>FFMpeg\Filters\Audio | PHP-FFMpeg API</title>
|
||||
<link rel="stylesheet" type="text/css" href="../../stylesheet.css">
|
||||
</head>
|
||||
<body id="overview">
|
||||
<div class="header">
|
||||
<ul>
|
||||
<li><a href="../../classes.html">Classes</a></li>
|
||||
<li><a href="../../namespaces.html">Namespaces</a></li>
|
||||
<li><a href="../../interfaces.html">Interfaces</a></li>
|
||||
<li><a href="../../traits.html">Traits</a></li>
|
||||
<li><a href="../../doc-index.html">Index</a></li>
|
||||
|
||||
</ul>
|
||||
|
||||
<div id="title">PHP-FFMpeg API</div>
|
||||
|
||||
<div class="type">Namespace</div>
|
||||
<h1>FFMpeg\Filters\Audio</h1>
|
||||
</div>
|
||||
<div class="content">
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="../../FFMpeg/Filters/Audio/AudioFilters.html"><abbr title="FFMpeg\Filters\Audio\AudioFilters">AudioFilters</abbr></a></td>
|
||||
<td class="last">
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><a href="../../FFMpeg/Filters/Audio/AudioResamplableFilter.html"><abbr title="FFMpeg\Filters\Audio\AudioResamplableFilter">AudioResamplableFilter</abbr></a></td>
|
||||
<td class="last">
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><a href="../../FFMpeg/Filters/Audio/SimpleFilter.html"><abbr title="FFMpeg\Filters\Audio\SimpleFilter">SimpleFilter</abbr></a></td>
|
||||
<td class="last">
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
<h2>Interfaces</h2>
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="../../FFMpeg/Filters/Audio/AudioFilterInterface.html"><abbr title="FFMpeg\Filters\Audio\AudioFilterInterface">AudioFilterInterface</abbr></a></td>
|
||||
<td class="last">
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
</div>
|
||||
<div id="footer">
|
||||
Generated by <a href="http://sami.sensiolabs.org/" target="_top">Sami, the API Documentation Generator</a>.
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
|
|
@ -1,135 +0,0 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<meta name="robots" content="index, follow, all" />
|
||||
<title>FFMpeg\Filters\Audio\AudioFilterInterface | PHP-FFMpeg API</title>
|
||||
<link rel="stylesheet" type="text/css" href="../../../stylesheet.css">
|
||||
</head>
|
||||
<body id="class">
|
||||
<div class="header">
|
||||
<ul>
|
||||
<li><a href="../../../classes.html">Classes</a></li>
|
||||
<li><a href="../../../namespaces.html">Namespaces</a></li>
|
||||
<li><a href="../../../interfaces.html">Interfaces</a></li>
|
||||
<li><a href="../../../traits.html">Traits</a></li>
|
||||
<li><a href="../../../doc-index.html">Index</a></li>
|
||||
|
||||
</ul>
|
||||
|
||||
<div id="title">PHP-FFMpeg API</div>
|
||||
|
||||
<div class="type">Interface</div>
|
||||
<h1><a href="../../../FFMpeg/Filters/Audio.html">FFMpeg\Filters\Audio</a>\AudioFilterInterface</h1>
|
||||
</div>
|
||||
<div class="content">
|
||||
<p> interface
|
||||
<strong>AudioFilterInterface</strong> implements
|
||||
<a href="../../../FFMpeg/Filters/FilterInterface.html"><abbr title="FFMpeg\Filters\FilterInterface">FilterInterface</abbr></a></p>
|
||||
|
||||
|
||||
|
||||
|
||||
<h2>Methods</h2>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td class="type">
|
||||
integer
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_getPriority">getPriority</a>()
|
||||
<p>Returns the priority of the filter.</p>
|
||||
</td>
|
||||
<td><small>from <a href="../../../FFMpeg/Filters/FilterInterface.html#method_getPriority"><abbr title="FFMpeg\Filters\FilterInterface">FilterInterface</abbr></a></small></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
array
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_apply">apply</a>(<a href="../../../FFMpeg/Media/Audio.html"><abbr title="FFMpeg\Media\Audio">Audio</abbr></a> $audio, <a href="../../../FFMpeg/Format/AudioInterface.html"><abbr title="FFMpeg\Format\AudioInterface">AudioInterface</abbr></a> $format)
|
||||
<p>Applies the filter on the the Audio media given an format.</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h2>Details</h2>
|
||||
|
||||
<h3 id="method_getPriority">
|
||||
<div class="location">in <a href="../../../FFMpeg/Filters/FilterInterface.html#method_getPriority"><abbr title="FFMpeg\Filters\FilterInterface">FilterInterface</abbr></a> at line 21</div>
|
||||
<code> public integer
|
||||
<strong>getPriority</strong>()</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Returns the priority of the filter.</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td>integer</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_apply">
|
||||
<div class="location">at line 28</div>
|
||||
<code> public array
|
||||
<strong>apply</strong>(<a href="../../../FFMpeg/Media/Audio.html"><abbr title="FFMpeg\Media\Audio">Audio</abbr></a> $audio, <a href="../../../FFMpeg/Format/AudioInterface.html"><abbr title="FFMpeg\Format\AudioInterface">AudioInterface</abbr></a> $format)</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Applies the filter on the the Audio media given an format.</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
<h4>Parameters</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="../../../FFMpeg/Media/Audio.html"><abbr title="FFMpeg\Media\Audio">Audio</abbr></a></td>
|
||||
<td>$audio</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><a href="../../../FFMpeg/Format/AudioInterface.html"><abbr title="FFMpeg\Format\AudioInterface">AudioInterface</abbr></a></td>
|
||||
<td>$format</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td>array</td>
|
||||
<td>An array of arguments</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
</div>
|
||||
<div id="footer">
|
||||
Generated by <a href="http://sami.sensiolabs.org/" target="_top">Sami, the API Documentation Generator</a>.
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
|
|
@ -1,132 +0,0 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<meta name="robots" content="index, follow, all" />
|
||||
<title>FFMpeg\Filters\Audio\AudioFilters | PHP-FFMpeg API</title>
|
||||
<link rel="stylesheet" type="text/css" href="../../../stylesheet.css">
|
||||
</head>
|
||||
<body id="class">
|
||||
<div class="header">
|
||||
<ul>
|
||||
<li><a href="../../../classes.html">Classes</a></li>
|
||||
<li><a href="../../../namespaces.html">Namespaces</a></li>
|
||||
<li><a href="../../../interfaces.html">Interfaces</a></li>
|
||||
<li><a href="../../../traits.html">Traits</a></li>
|
||||
<li><a href="../../../doc-index.html">Index</a></li>
|
||||
|
||||
</ul>
|
||||
|
||||
<div id="title">PHP-FFMpeg API</div>
|
||||
|
||||
<div class="type">Class</div>
|
||||
<h1><a href="../../../FFMpeg/Filters/Audio.html">FFMpeg\Filters\Audio</a>\AudioFilters</h1>
|
||||
</div>
|
||||
<div class="content">
|
||||
<p> class
|
||||
<strong>AudioFilters</strong></p>
|
||||
|
||||
|
||||
|
||||
|
||||
<h2>Methods</h2>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td class="type">
|
||||
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method___construct">__construct</a>(<a href="../../../FFMpeg/Media/Audio.html"><abbr title="FFMpeg\Media\Audio">Audio</abbr></a> $media)
|
||||
<p>
|
||||
</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
<a href="../../../FFMpeg/Filters/Audio/AudioFilters.html"><abbr title="FFMpeg\Filters\Audio\AudioFilters">AudioFilters</abbr></a>
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_resample">resample</a>(Integer $rate)
|
||||
<p>Resamples the audio file.</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h2>Details</h2>
|
||||
|
||||
<h3 id="method___construct">
|
||||
<div class="location">at line 11</div>
|
||||
<code> public
|
||||
<strong>__construct</strong>(<a href="../../../FFMpeg/Media/Audio.html"><abbr title="FFMpeg\Media\Audio">Audio</abbr></a> $media)</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>
|
||||
</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
<h4>Parameters</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="../../../FFMpeg/Media/Audio.html"><abbr title="FFMpeg\Media\Audio">Audio</abbr></a></td>
|
||||
<td>$media</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_resample">
|
||||
<div class="location">at line 23</div>
|
||||
<code> public <a href="../../../FFMpeg/Filters/Audio/AudioFilters.html"><abbr title="FFMpeg\Filters\Audio\AudioFilters">AudioFilters</abbr></a>
|
||||
<strong>resample</strong>(Integer $rate)</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Resamples the audio file.</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
<h4>Parameters</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td>Integer</td>
|
||||
<td>$rate</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="../../../FFMpeg/Filters/Audio/AudioFilters.html"><abbr title="FFMpeg\Filters\Audio\AudioFilters">AudioFilters</abbr></a></td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
</div>
|
||||
<div id="footer">
|
||||
Generated by <a href="http://sami.sensiolabs.org/" target="_top">Sami, the API Documentation Generator</a>.
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
|
|
@ -1,218 +0,0 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<meta name="robots" content="index, follow, all" />
|
||||
<title>FFMpeg\Filters\Audio\AudioResamplableFilter | PHP-FFMpeg API</title>
|
||||
<link rel="stylesheet" type="text/css" href="../../../stylesheet.css">
|
||||
</head>
|
||||
<body id="class">
|
||||
<div class="header">
|
||||
<ul>
|
||||
<li><a href="../../../classes.html">Classes</a></li>
|
||||
<li><a href="../../../namespaces.html">Namespaces</a></li>
|
||||
<li><a href="../../../interfaces.html">Interfaces</a></li>
|
||||
<li><a href="../../../traits.html">Traits</a></li>
|
||||
<li><a href="../../../doc-index.html">Index</a></li>
|
||||
|
||||
</ul>
|
||||
|
||||
<div id="title">PHP-FFMpeg API</div>
|
||||
|
||||
<div class="type">Class</div>
|
||||
<h1><a href="../../../FFMpeg/Filters/Audio.html">FFMpeg\Filters\Audio</a>\AudioResamplableFilter</h1>
|
||||
</div>
|
||||
<div class="content">
|
||||
<p> class
|
||||
<strong>AudioResamplableFilter</strong> implements
|
||||
<a href="../../../FFMpeg/Filters/Audio/AudioFilterInterface.html"><abbr title="FFMpeg\Filters\Audio\AudioFilterInterface">AudioFilterInterface</abbr></a></p>
|
||||
|
||||
|
||||
|
||||
|
||||
<h2>Methods</h2>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td class="type">
|
||||
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method___construct">__construct</a>($rate, $priority)
|
||||
<p>
|
||||
</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
integer
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_getPriority">getPriority</a>()
|
||||
<p>Returns the priority of the filter.</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
Integer
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_getRate">getRate</a>()
|
||||
<p>
|
||||
</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
array
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_apply">apply</a>(<a href="../../../FFMpeg/Media/Audio.html"><abbr title="FFMpeg\Media\Audio">Audio</abbr></a> $audio, <a href="../../../FFMpeg/Format/AudioInterface.html"><abbr title="FFMpeg\Format\AudioInterface">AudioInterface</abbr></a> $format)
|
||||
<p>Applies the filter on the the Audio media given an format.</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h2>Details</h2>
|
||||
|
||||
<h3 id="method___construct">
|
||||
<div class="location">at line 24</div>
|
||||
<code> public
|
||||
<strong>__construct</strong>($rate, $priority)</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>
|
||||
</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
<h4>Parameters</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td></td>
|
||||
<td>$rate</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td></td>
|
||||
<td>$priority</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_getPriority">
|
||||
<div class="location">at line 33</div>
|
||||
<code> public integer
|
||||
<strong>getPriority</strong>()</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Returns the priority of the filter.</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td>integer</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_getRate">
|
||||
<div class="location">at line 42</div>
|
||||
<code> public Integer
|
||||
<strong>getRate</strong>()</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>
|
||||
</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td>Integer</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_apply">
|
||||
<div class="location">at line 50</div>
|
||||
<code> public array
|
||||
<strong>apply</strong>(<a href="../../../FFMpeg/Media/Audio.html"><abbr title="FFMpeg\Media\Audio">Audio</abbr></a> $audio, <a href="../../../FFMpeg/Format/AudioInterface.html"><abbr title="FFMpeg\Format\AudioInterface">AudioInterface</abbr></a> $format)</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Applies the filter on the the Audio media given an format.</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
<h4>Parameters</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="../../../FFMpeg/Media/Audio.html"><abbr title="FFMpeg\Media\Audio">Audio</abbr></a></td>
|
||||
<td>$audio</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><a href="../../../FFMpeg/Format/AudioInterface.html"><abbr title="FFMpeg\Format\AudioInterface">AudioInterface</abbr></a></td>
|
||||
<td>$format</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td>array</td>
|
||||
<td>An array of arguments</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
</div>
|
||||
<div id="footer">
|
||||
Generated by <a href="http://sami.sensiolabs.org/" target="_top">Sami, the API Documentation Generator</a>.
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
|
|
@ -1,180 +0,0 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<meta name="robots" content="index, follow, all" />
|
||||
<title>FFMpeg\Filters\Audio\SimpleFilter | PHP-FFMpeg API</title>
|
||||
<link rel="stylesheet" type="text/css" href="../../../stylesheet.css">
|
||||
</head>
|
||||
<body id="class">
|
||||
<div class="header">
|
||||
<ul>
|
||||
<li><a href="../../../classes.html">Classes</a></li>
|
||||
<li><a href="../../../namespaces.html">Namespaces</a></li>
|
||||
<li><a href="../../../interfaces.html">Interfaces</a></li>
|
||||
<li><a href="../../../traits.html">Traits</a></li>
|
||||
<li><a href="../../../doc-index.html">Index</a></li>
|
||||
|
||||
</ul>
|
||||
|
||||
<div id="title">PHP-FFMpeg API</div>
|
||||
|
||||
<div class="type">Class</div>
|
||||
<h1><a href="../../../FFMpeg/Filters/Audio.html">FFMpeg\Filters\Audio</a>\SimpleFilter</h1>
|
||||
</div>
|
||||
<div class="content">
|
||||
<p> class
|
||||
<strong>SimpleFilter</strong> implements
|
||||
<a href="../../../FFMpeg/Filters/Audio/AudioFilterInterface.html"><abbr title="FFMpeg\Filters\Audio\AudioFilterInterface">AudioFilterInterface</abbr></a></p>
|
||||
|
||||
|
||||
|
||||
|
||||
<h2>Methods</h2>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td class="type">
|
||||
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method___construct">__construct</a>(array $params, $priority)
|
||||
<p>
|
||||
</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
integer
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_getPriority">getPriority</a>()
|
||||
<p>Returns the priority of the filter.</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
array
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_apply">apply</a>(<a href="../../../FFMpeg/Media/Audio.html"><abbr title="FFMpeg\Media\Audio">Audio</abbr></a> $audio, <a href="../../../FFMpeg/Format/AudioInterface.html"><abbr title="FFMpeg\Format\AudioInterface">AudioInterface</abbr></a> $format)
|
||||
<p>Applies the filter on the the Audio media given an format.</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h2>Details</h2>
|
||||
|
||||
<h3 id="method___construct">
|
||||
<div class="location">at line 13</div>
|
||||
<code> public
|
||||
<strong>__construct</strong>(array $params, $priority)</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>
|
||||
</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
<h4>Parameters</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td>array</td>
|
||||
<td>$params</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td></td>
|
||||
<td>$priority</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_getPriority">
|
||||
<div class="location">at line 22</div>
|
||||
<code> public integer
|
||||
<strong>getPriority</strong>()</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Returns the priority of the filter.</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td>integer</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_apply">
|
||||
<div class="location">at line 30</div>
|
||||
<code> public array
|
||||
<strong>apply</strong>(<a href="../../../FFMpeg/Media/Audio.html"><abbr title="FFMpeg\Media\Audio">Audio</abbr></a> $audio, <a href="../../../FFMpeg/Format/AudioInterface.html"><abbr title="FFMpeg\Format\AudioInterface">AudioInterface</abbr></a> $format)</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Applies the filter on the the Audio media given an format.</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
<h4>Parameters</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="../../../FFMpeg/Media/Audio.html"><abbr title="FFMpeg\Media\Audio">Audio</abbr></a></td>
|
||||
<td>$audio</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><a href="../../../FFMpeg/Format/AudioInterface.html"><abbr title="FFMpeg\Format\AudioInterface">AudioInterface</abbr></a></td>
|
||||
<td>$format</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td>array</td>
|
||||
<td>An array of arguments</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
</div>
|
||||
<div id="footer">
|
||||
Generated by <a href="http://sami.sensiolabs.org/" target="_top">Sami, the API Documentation Generator</a>.
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
|
|
@ -1,9 +0,0 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<meta name="robots" content="index, follow, all" />
|
||||
<title>FFMpeg\Filters\Audio | PHP-FFMpeg API</title>
|
||||
<link rel="stylesheet" type="text/css" href="../../../stylesheet.css">
|
||||
</head>
|
||||
</html>
|
||||
|
|
@ -1,82 +0,0 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<meta name="robots" content="index, follow, all" />
|
||||
<title>FFMpeg\Filters\FilterInterface | PHP-FFMpeg API</title>
|
||||
<link rel="stylesheet" type="text/css" href="../../stylesheet.css">
|
||||
</head>
|
||||
<body id="class">
|
||||
<div class="header">
|
||||
<ul>
|
||||
<li><a href="../../classes.html">Classes</a></li>
|
||||
<li><a href="../../namespaces.html">Namespaces</a></li>
|
||||
<li><a href="../../interfaces.html">Interfaces</a></li>
|
||||
<li><a href="../../traits.html">Traits</a></li>
|
||||
<li><a href="../../doc-index.html">Index</a></li>
|
||||
|
||||
</ul>
|
||||
|
||||
<div id="title">PHP-FFMpeg API</div>
|
||||
|
||||
<div class="type">Interface</div>
|
||||
<h1><a href="../../FFMpeg/Filters.html">FFMpeg\Filters</a>\FilterInterface</h1>
|
||||
</div>
|
||||
<div class="content">
|
||||
<p> interface
|
||||
<strong>FilterInterface</strong></p>
|
||||
|
||||
|
||||
|
||||
|
||||
<h2>Methods</h2>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td class="type">
|
||||
integer
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_getPriority">getPriority</a>()
|
||||
<p>Returns the priority of the filter.</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h2>Details</h2>
|
||||
|
||||
<h3 id="method_getPriority">
|
||||
<div class="location">at line 21</div>
|
||||
<code> public integer
|
||||
<strong>getPriority</strong>()</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Returns the priority of the filter.</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td>integer</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
</div>
|
||||
<div id="footer">
|
||||
Generated by <a href="http://sami.sensiolabs.org/" target="_top">Sami, the API Documentation Generator</a>.
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
|
|
@ -1,148 +0,0 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<meta name="robots" content="index, follow, all" />
|
||||
<title>FFMpeg\Filters\FiltersCollection | PHP-FFMpeg API</title>
|
||||
<link rel="stylesheet" type="text/css" href="../../stylesheet.css">
|
||||
</head>
|
||||
<body id="class">
|
||||
<div class="header">
|
||||
<ul>
|
||||
<li><a href="../../classes.html">Classes</a></li>
|
||||
<li><a href="../../namespaces.html">Namespaces</a></li>
|
||||
<li><a href="../../interfaces.html">Interfaces</a></li>
|
||||
<li><a href="../../traits.html">Traits</a></li>
|
||||
<li><a href="../../doc-index.html">Index</a></li>
|
||||
|
||||
</ul>
|
||||
|
||||
<div id="title">PHP-FFMpeg API</div>
|
||||
|
||||
<div class="type">Class</div>
|
||||
<h1><a href="../../FFMpeg/Filters.html">FFMpeg\Filters</a>\FiltersCollection</h1>
|
||||
</div>
|
||||
<div class="content">
|
||||
<p> class
|
||||
<strong>FiltersCollection</strong> implements
|
||||
<a href="http://php.net/Countable"><abbr title="Countable">Countable</abbr></a>, <a href="http://php.net/IteratorAggregate"><abbr title="IteratorAggregate">IteratorAggregate</abbr></a></p>
|
||||
|
||||
|
||||
|
||||
|
||||
<h2>Methods</h2>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td class="type">
|
||||
<a href="../../FFMpeg/Filters/FiltersCollection.html"><abbr title="FFMpeg\Filters\FiltersCollection">FiltersCollection</abbr></a>
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_add">add</a>(<a href="../../FFMpeg/Filters/FilterInterface.html"><abbr title="FFMpeg\Filters\FilterInterface">FilterInterface</abbr></a> $filter)
|
||||
<p>
|
||||
</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_count">count</a>()
|
||||
<p>{@inheritdoc}</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_getIterator">getIterator</a>()
|
||||
<p>{@inheritdoc}</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h2>Details</h2>
|
||||
|
||||
<h3 id="method_add">
|
||||
<div class="location">at line 24</div>
|
||||
<code> public <a href="../../FFMpeg/Filters/FiltersCollection.html"><abbr title="FFMpeg\Filters\FiltersCollection">FiltersCollection</abbr></a>
|
||||
<strong>add</strong>(<a href="../../FFMpeg/Filters/FilterInterface.html"><abbr title="FFMpeg\Filters\FilterInterface">FilterInterface</abbr></a> $filter)</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>
|
||||
</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
<h4>Parameters</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="../../FFMpeg/Filters/FilterInterface.html"><abbr title="FFMpeg\Filters\FilterInterface">FilterInterface</abbr></a></td>
|
||||
<td>$filter</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="../../FFMpeg/Filters/FiltersCollection.html"><abbr title="FFMpeg\Filters\FiltersCollection">FiltersCollection</abbr></a></td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_count">
|
||||
<div class="location">at line 35</div>
|
||||
<code> public
|
||||
<strong>count</strong>()</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>{@inheritdoc}</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_getIterator">
|
||||
<div class="location">at line 47</div>
|
||||
<code> public
|
||||
<strong>getIterator</strong>()</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>{@inheritdoc}</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
</div>
|
||||
<div id="footer">
|
||||
Generated by <a href="http://sami.sensiolabs.org/" target="_top">Sami, the API Documentation Generator</a>.
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
|
|
@ -1,53 +0,0 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<meta name="robots" content="index, follow, all" />
|
||||
<title>FFMpeg\Filters\Frame | PHP-FFMpeg API</title>
|
||||
<link rel="stylesheet" type="text/css" href="../../stylesheet.css">
|
||||
</head>
|
||||
<body id="overview">
|
||||
<div class="header">
|
||||
<ul>
|
||||
<li><a href="../../classes.html">Classes</a></li>
|
||||
<li><a href="../../namespaces.html">Namespaces</a></li>
|
||||
<li><a href="../../interfaces.html">Interfaces</a></li>
|
||||
<li><a href="../../traits.html">Traits</a></li>
|
||||
<li><a href="../../doc-index.html">Index</a></li>
|
||||
|
||||
</ul>
|
||||
|
||||
<div id="title">PHP-FFMpeg API</div>
|
||||
|
||||
<div class="type">Namespace</div>
|
||||
<h1>FFMpeg\Filters\Frame</h1>
|
||||
</div>
|
||||
<div class="content">
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="../../FFMpeg/Filters/Frame/DisplayRatioFixerFilter.html"><abbr title="FFMpeg\Filters\Frame\DisplayRatioFixerFilter">DisplayRatioFixerFilter</abbr></a></td>
|
||||
<td class="last">
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><a href="../../FFMpeg/Filters/Frame/FrameFilters.html"><abbr title="FFMpeg\Filters\Frame\FrameFilters">FrameFilters</abbr></a></td>
|
||||
<td class="last">
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
<h2>Interfaces</h2>
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="../../FFMpeg/Filters/Frame/FrameFilterInterface.html"><abbr title="FFMpeg\Filters\Frame\FrameFilterInterface">FrameFilterInterface</abbr></a></td>
|
||||
<td class="last">
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
</div>
|
||||
<div id="footer">
|
||||
Generated by <a href="http://sami.sensiolabs.org/" target="_top">Sami, the API Documentation Generator</a>.
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
|
|
@ -1,161 +0,0 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<meta name="robots" content="index, follow, all" />
|
||||
<title>FFMpeg\Filters\Frame\DisplayRatioFixerFilter | PHP-FFMpeg API</title>
|
||||
<link rel="stylesheet" type="text/css" href="../../../stylesheet.css">
|
||||
</head>
|
||||
<body id="class">
|
||||
<div class="header">
|
||||
<ul>
|
||||
<li><a href="../../../classes.html">Classes</a></li>
|
||||
<li><a href="../../../namespaces.html">Namespaces</a></li>
|
||||
<li><a href="../../../interfaces.html">Interfaces</a></li>
|
||||
<li><a href="../../../traits.html">Traits</a></li>
|
||||
<li><a href="../../../doc-index.html">Index</a></li>
|
||||
|
||||
</ul>
|
||||
|
||||
<div id="title">PHP-FFMpeg API</div>
|
||||
|
||||
<div class="type">Class</div>
|
||||
<h1><a href="../../../FFMpeg/Filters/Frame.html">FFMpeg\Filters\Frame</a>\DisplayRatioFixerFilter</h1>
|
||||
</div>
|
||||
<div class="content">
|
||||
<p> class
|
||||
<strong>DisplayRatioFixerFilter</strong> implements
|
||||
<a href="../../../FFMpeg/Filters/Frame/FrameFilterInterface.html"><abbr title="FFMpeg\Filters\Frame\FrameFilterInterface">FrameFilterInterface</abbr></a></p>
|
||||
|
||||
|
||||
|
||||
|
||||
<h2>Methods</h2>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td class="type">
|
||||
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method___construct">__construct</a>($priority)
|
||||
<p>
|
||||
</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
integer
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_getPriority">getPriority</a>()
|
||||
<p>Returns the priority of the filter.</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_apply">apply</a>(<a href="../../../FFMpeg/Media/Frame.html"><abbr title="FFMpeg\Media\Frame">Frame</abbr></a> $frame)
|
||||
<p>
|
||||
</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h2>Details</h2>
|
||||
|
||||
<h3 id="method___construct">
|
||||
<div class="location">at line 22</div>
|
||||
<code> public
|
||||
<strong>__construct</strong>($priority)</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>
|
||||
</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
<h4>Parameters</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td></td>
|
||||
<td>$priority</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_getPriority">
|
||||
<div class="location">at line 30</div>
|
||||
<code> public integer
|
||||
<strong>getPriority</strong>()</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Returns the priority of the filter.</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td>integer</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_apply">
|
||||
<div class="location">at line 38</div>
|
||||
<code> public
|
||||
<strong>apply</strong>(<a href="../../../FFMpeg/Media/Frame.html"><abbr title="FFMpeg\Media\Frame">Frame</abbr></a> $frame)</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>
|
||||
</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
<h4>Parameters</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="../../../FFMpeg/Media/Frame.html"><abbr title="FFMpeg\Media\Frame">Frame</abbr></a></td>
|
||||
<td>$frame</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
</div>
|
||||
<div id="footer">
|
||||
Generated by <a href="http://sami.sensiolabs.org/" target="_top">Sami, the API Documentation Generator</a>.
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
|
|
@ -1,122 +0,0 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<meta name="robots" content="index, follow, all" />
|
||||
<title>FFMpeg\Filters\Frame\FrameFilterInterface | PHP-FFMpeg API</title>
|
||||
<link rel="stylesheet" type="text/css" href="../../../stylesheet.css">
|
||||
</head>
|
||||
<body id="class">
|
||||
<div class="header">
|
||||
<ul>
|
||||
<li><a href="../../../classes.html">Classes</a></li>
|
||||
<li><a href="../../../namespaces.html">Namespaces</a></li>
|
||||
<li><a href="../../../interfaces.html">Interfaces</a></li>
|
||||
<li><a href="../../../traits.html">Traits</a></li>
|
||||
<li><a href="../../../doc-index.html">Index</a></li>
|
||||
|
||||
</ul>
|
||||
|
||||
<div id="title">PHP-FFMpeg API</div>
|
||||
|
||||
<div class="type">Interface</div>
|
||||
<h1><a href="../../../FFMpeg/Filters/Frame.html">FFMpeg\Filters\Frame</a>\FrameFilterInterface</h1>
|
||||
</div>
|
||||
<div class="content">
|
||||
<p> interface
|
||||
<strong>FrameFilterInterface</strong> implements
|
||||
<a href="../../../FFMpeg/Filters/FilterInterface.html"><abbr title="FFMpeg\Filters\FilterInterface">FilterInterface</abbr></a></p>
|
||||
|
||||
|
||||
|
||||
|
||||
<h2>Methods</h2>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td class="type">
|
||||
integer
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_getPriority">getPriority</a>()
|
||||
<p>Returns the priority of the filter.</p>
|
||||
</td>
|
||||
<td><small>from <a href="../../../FFMpeg/Filters/FilterInterface.html#method_getPriority"><abbr title="FFMpeg\Filters\FilterInterface">FilterInterface</abbr></a></small></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_apply">apply</a>(<a href="../../../FFMpeg/Media/Frame.html"><abbr title="FFMpeg\Media\Frame">Frame</abbr></a> $frame)
|
||||
<p>
|
||||
</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h2>Details</h2>
|
||||
|
||||
<h3 id="method_getPriority">
|
||||
<div class="location">in <a href="../../../FFMpeg/Filters/FilterInterface.html#method_getPriority"><abbr title="FFMpeg\Filters\FilterInterface">FilterInterface</abbr></a> at line 21</div>
|
||||
<code> public integer
|
||||
<strong>getPriority</strong>()</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Returns the priority of the filter.</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td>integer</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_apply">
|
||||
<div class="location">at line 19</div>
|
||||
<code> public
|
||||
<strong>apply</strong>(<a href="../../../FFMpeg/Media/Frame.html"><abbr title="FFMpeg\Media\Frame">Frame</abbr></a> $frame)</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>
|
||||
</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
<h4>Parameters</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="../../../FFMpeg/Media/Frame.html"><abbr title="FFMpeg\Media\Frame">Frame</abbr></a></td>
|
||||
<td>$frame</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
</div>
|
||||
<div id="footer">
|
||||
Generated by <a href="http://sami.sensiolabs.org/" target="_top">Sami, the API Documentation Generator</a>.
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
|
|
@ -1,121 +0,0 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<meta name="robots" content="index, follow, all" />
|
||||
<title>FFMpeg\Filters\Frame\FrameFilters | PHP-FFMpeg API</title>
|
||||
<link rel="stylesheet" type="text/css" href="../../../stylesheet.css">
|
||||
</head>
|
||||
<body id="class">
|
||||
<div class="header">
|
||||
<ul>
|
||||
<li><a href="../../../classes.html">Classes</a></li>
|
||||
<li><a href="../../../namespaces.html">Namespaces</a></li>
|
||||
<li><a href="../../../interfaces.html">Interfaces</a></li>
|
||||
<li><a href="../../../traits.html">Traits</a></li>
|
||||
<li><a href="../../../doc-index.html">Index</a></li>
|
||||
|
||||
</ul>
|
||||
|
||||
<div id="title">PHP-FFMpeg API</div>
|
||||
|
||||
<div class="type">Class</div>
|
||||
<h1><a href="../../../FFMpeg/Filters/Frame.html">FFMpeg\Filters\Frame</a>\FrameFilters</h1>
|
||||
</div>
|
||||
<div class="content">
|
||||
<p> class
|
||||
<strong>FrameFilters</strong></p>
|
||||
|
||||
|
||||
|
||||
|
||||
<h2>Methods</h2>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td class="type">
|
||||
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method___construct">__construct</a>(<a href="../../../FFMpeg/Media/Frame.html"><abbr title="FFMpeg\Media\Frame">Frame</abbr></a> $frame)
|
||||
<p>
|
||||
</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
<a href="../../../FFMpeg/Filters/Frame/FrameFilters.html"><abbr title="FFMpeg\Filters\Frame\FrameFilters">FrameFilters</abbr></a>
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_fixDisplayRatio">fixDisplayRatio</a>()
|
||||
<p>Fixes the display ratio of the output frame.</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h2>Details</h2>
|
||||
|
||||
<h3 id="method___construct">
|
||||
<div class="location">at line 20</div>
|
||||
<code> public
|
||||
<strong>__construct</strong>(<a href="../../../FFMpeg/Media/Frame.html"><abbr title="FFMpeg\Media\Frame">Frame</abbr></a> $frame)</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>
|
||||
</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
<h4>Parameters</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="../../../FFMpeg/Media/Frame.html"><abbr title="FFMpeg\Media\Frame">Frame</abbr></a></td>
|
||||
<td>$frame</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_fixDisplayRatio">
|
||||
<div class="location">at line 33</div>
|
||||
<code> public <a href="../../../FFMpeg/Filters/Frame/FrameFilters.html"><abbr title="FFMpeg\Filters\Frame\FrameFilters">FrameFilters</abbr></a>
|
||||
<strong>fixDisplayRatio</strong>()</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Fixes the display ratio of the output frame.</p>
|
||||
<p>In case the sample ratio and display ratio are different, image may be
|
||||
anamorphozed. This filter fixes this by specifying the output size.</p>
|
||||
<div class="tags">
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="../../../FFMpeg/Filters/Frame/FrameFilters.html"><abbr title="FFMpeg\Filters\Frame\FrameFilters">FrameFilters</abbr></a></td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
</div>
|
||||
<div id="footer">
|
||||
Generated by <a href="http://sami.sensiolabs.org/" target="_top">Sami, the API Documentation Generator</a>.
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
|
|
@ -1,9 +0,0 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<meta name="robots" content="index, follow, all" />
|
||||
<title>FFMpeg\Filters\Frame | PHP-FFMpeg API</title>
|
||||
<link rel="stylesheet" type="text/css" href="../../../stylesheet.css">
|
||||
</head>
|
||||
</html>
|
||||
|
|
@ -1,82 +0,0 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<meta name="robots" content="index, follow, all" />
|
||||
<title>FFMpeg\Filters\Video | PHP-FFMpeg API</title>
|
||||
<link rel="stylesheet" type="text/css" href="../../stylesheet.css">
|
||||
</head>
|
||||
<body id="overview">
|
||||
<div class="header">
|
||||
<ul>
|
||||
<li><a href="../../classes.html">Classes</a></li>
|
||||
<li><a href="../../namespaces.html">Namespaces</a></li>
|
||||
<li><a href="../../interfaces.html">Interfaces</a></li>
|
||||
<li><a href="../../traits.html">Traits</a></li>
|
||||
<li><a href="../../doc-index.html">Index</a></li>
|
||||
|
||||
</ul>
|
||||
|
||||
<div id="title">PHP-FFMpeg API</div>
|
||||
|
||||
<div class="type">Namespace</div>
|
||||
<h1>FFMpeg\Filters\Video</h1>
|
||||
</div>
|
||||
<div class="content">
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="../../FFMpeg/Filters/Video/ClipFilter.html"><abbr title="FFMpeg\Filters\Video\ClipFilter">ClipFilter</abbr></a></td>
|
||||
<td class="last">
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><a href="../../FFMpeg/Filters/Video/CustomFilter.html"><abbr title="FFMpeg\Filters\Video\CustomFilter">CustomFilter</abbr></a></td>
|
||||
<td class="last">
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><a href="../../FFMpeg/Filters/Video/FrameRateFilter.html"><abbr title="FFMpeg\Filters\Video\FrameRateFilter">FrameRateFilter</abbr></a></td>
|
||||
<td class="last">
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><a href="../../FFMpeg/Filters/Video/ResizeFilter.html"><abbr title="FFMpeg\Filters\Video\ResizeFilter">ResizeFilter</abbr></a></td>
|
||||
<td class="last">
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><a href="../../FFMpeg/Filters/Video/RotateFilter.html"><abbr title="FFMpeg\Filters\Video\RotateFilter">RotateFilter</abbr></a></td>
|
||||
<td class="last">
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><a href="../../FFMpeg/Filters/Video/SynchronizeFilter.html"><abbr title="FFMpeg\Filters\Video\SynchronizeFilter">SynchronizeFilter</abbr></a></td>
|
||||
<td class="last">Synchronizes audio and video in case of desynchronized movies.</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><a href="../../FFMpeg/Filters/Video/VideoFilters.html"><abbr title="FFMpeg\Filters\Video\VideoFilters">VideoFilters</abbr></a></td>
|
||||
<td class="last">
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><a href="../../FFMpeg/Filters/Video/WatermarkFilter.html"><abbr title="FFMpeg\Filters\Video\WatermarkFilter">WatermarkFilter</abbr></a></td>
|
||||
<td class="last">
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
<h2>Interfaces</h2>
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="../../FFMpeg/Filters/Video/VideoFilterInterface.html"><abbr title="FFMpeg\Filters\Video\VideoFilterInterface">VideoFilterInterface</abbr></a></td>
|
||||
<td class="last">
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
</div>
|
||||
<div id="footer">
|
||||
Generated by <a href="http://sami.sensiolabs.org/" target="_top">Sami, the API Documentation Generator</a>.
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
|
|
@ -1,262 +0,0 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<meta name="robots" content="index, follow, all" />
|
||||
<title>FFMpeg\Filters\Video\ClipFilter | PHP-FFMpeg API</title>
|
||||
<link rel="stylesheet" type="text/css" href="../../../stylesheet.css">
|
||||
</head>
|
||||
<body id="class">
|
||||
<div class="header">
|
||||
<ul>
|
||||
<li><a href="../../../classes.html">Classes</a></li>
|
||||
<li><a href="../../../namespaces.html">Namespaces</a></li>
|
||||
<li><a href="../../../interfaces.html">Interfaces</a></li>
|
||||
<li><a href="../../../traits.html">Traits</a></li>
|
||||
<li><a href="../../../doc-index.html">Index</a></li>
|
||||
|
||||
</ul>
|
||||
|
||||
<div id="title">PHP-FFMpeg API</div>
|
||||
|
||||
<div class="type">Class</div>
|
||||
<h1><a href="../../../FFMpeg/Filters/Video.html">FFMpeg\Filters\Video</a>\ClipFilter</h1>
|
||||
</div>
|
||||
<div class="content">
|
||||
<p> class
|
||||
<strong>ClipFilter</strong> implements
|
||||
<a href="../../../FFMpeg/Filters/Video/VideoFilterInterface.html"><abbr title="FFMpeg\Filters\Video\VideoFilterInterface">VideoFilterInterface</abbr></a></p>
|
||||
|
||||
|
||||
|
||||
|
||||
<h2>Methods</h2>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td class="type">
|
||||
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method___construct">__construct</a>(<a href="../../../FFMpeg/Coordinate/TimeCode.html"><abbr title="FFMpeg\Coordinate\TimeCode">TimeCode</abbr></a> $start, <a href="../../../FFMpeg/Coordinate/TimeCode.html"><abbr title="FFMpeg\Coordinate\TimeCode">TimeCode</abbr></a> $duration = null, $priority)
|
||||
<p>
|
||||
</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
integer
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_getPriority">getPriority</a>()
|
||||
<p>Returns the priority of the filter.</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
<a href="../../../FFMpeg/Coordinate/TimeCode.html"><abbr title="FFMpeg\Coordinate\TimeCode">TimeCode</abbr></a>
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_getStart">getStart</a>()
|
||||
<p>
|
||||
</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
<a href="../../../FFMpeg/Coordinate/TimeCode.html"><abbr title="FFMpeg\Coordinate\TimeCode">TimeCode</abbr></a>
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_getDuration">getDuration</a>()
|
||||
<p>
|
||||
</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
array
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_apply">apply</a>(<a href="../../../FFMpeg/Media/Video.html"><abbr title="FFMpeg\Media\Video">Video</abbr></a> $video, <a href="../../../FFMpeg/Format/VideoInterface.html"><abbr title="FFMpeg\Format\VideoInterface">VideoInterface</abbr></a> $format)
|
||||
<p>Applies the filter on the the Video media given an format.</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h2>Details</h2>
|
||||
|
||||
<h3 id="method___construct">
|
||||
<div class="location">at line 27</div>
|
||||
<code> public
|
||||
<strong>__construct</strong>(<a href="../../../FFMpeg/Coordinate/TimeCode.html"><abbr title="FFMpeg\Coordinate\TimeCode">TimeCode</abbr></a> $start, <a href="../../../FFMpeg/Coordinate/TimeCode.html"><abbr title="FFMpeg\Coordinate\TimeCode">TimeCode</abbr></a> $duration = null, $priority)</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>
|
||||
</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>$start</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><a href="../../../FFMpeg/Coordinate/TimeCode.html"><abbr title="FFMpeg\Coordinate\TimeCode">TimeCode</abbr></a></td>
|
||||
<td>$duration</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td></td>
|
||||
<td>$priority</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_getPriority">
|
||||
<div class="location">at line 37</div>
|
||||
<code> public integer
|
||||
<strong>getPriority</strong>()</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Returns the priority of the filter.</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td>integer</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_getStart">
|
||||
<div class="location">at line 45</div>
|
||||
<code> public <a href="../../../FFMpeg/Coordinate/TimeCode.html"><abbr title="FFMpeg\Coordinate\TimeCode">TimeCode</abbr></a>
|
||||
<strong>getStart</strong>()</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>
|
||||
</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="../../../FFMpeg/Coordinate/TimeCode.html"><abbr title="FFMpeg\Coordinate\TimeCode">TimeCode</abbr></a></td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_getDuration">
|
||||
<div class="location">at line 53</div>
|
||||
<code> public <a href="../../../FFMpeg/Coordinate/TimeCode.html"><abbr title="FFMpeg\Coordinate\TimeCode">TimeCode</abbr></a>
|
||||
<strong>getDuration</strong>()</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>
|
||||
</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="../../../FFMpeg/Coordinate/TimeCode.html"><abbr title="FFMpeg\Coordinate\TimeCode">TimeCode</abbr></a></td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_apply">
|
||||
<div class="location">at line 61</div>
|
||||
<code> public array
|
||||
<strong>apply</strong>(<a href="../../../FFMpeg/Media/Video.html"><abbr title="FFMpeg\Media\Video">Video</abbr></a> $video, <a href="../../../FFMpeg/Format/VideoInterface.html"><abbr title="FFMpeg\Format\VideoInterface">VideoInterface</abbr></a> $format)</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Applies the filter on the the Video media given an format.</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
<h4>Parameters</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="../../../FFMpeg/Media/Video.html"><abbr title="FFMpeg\Media\Video">Video</abbr></a></td>
|
||||
<td>$video</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><a href="../../../FFMpeg/Format/VideoInterface.html"><abbr title="FFMpeg\Format\VideoInterface">VideoInterface</abbr></a></td>
|
||||
<td>$format</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td>array</td>
|
||||
<td>An array of arguments</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
</div>
|
||||
<div id="footer">
|
||||
Generated by <a href="http://sami.sensiolabs.org/" target="_top">Sami, the API Documentation Generator</a>.
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
|
|
@ -1,178 +0,0 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<meta name="robots" content="index, follow, all" />
|
||||
<title>FFMpeg\Filters\Video\CustomFilter | PHP-FFMpeg API</title>
|
||||
<link rel="stylesheet" type="text/css" href="../../../stylesheet.css">
|
||||
</head>
|
||||
<body id="class">
|
||||
<div class="header">
|
||||
<ul>
|
||||
<li><a href="../../../classes.html">Classes</a></li>
|
||||
<li><a href="../../../namespaces.html">Namespaces</a></li>
|
||||
<li><a href="../../../interfaces.html">Interfaces</a></li>
|
||||
<li><a href="../../../traits.html">Traits</a></li>
|
||||
<li><a href="../../../doc-index.html">Index</a></li>
|
||||
|
||||
</ul>
|
||||
|
||||
<div id="title">PHP-FFMpeg API</div>
|
||||
|
||||
<div class="type">Class</div>
|
||||
<h1><a href="../../../FFMpeg/Filters/Video.html">FFMpeg\Filters\Video</a>\CustomFilter</h1>
|
||||
</div>
|
||||
<div class="content">
|
||||
<p> class
|
||||
<strong>CustomFilter</strong> implements
|
||||
<a href="../../../FFMpeg/Filters/Video/VideoFilterInterface.html"><abbr title="FFMpeg\Filters\Video\VideoFilterInterface">VideoFilterInterface</abbr></a></p>
|
||||
|
||||
|
||||
|
||||
|
||||
<h2>Methods</h2>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td class="type">
|
||||
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method___construct">__construct</a>(string $filter, int $priority)
|
||||
<p>A custom filter, useful if you want to build complex filters</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
integer
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_getPriority">getPriority</a>()
|
||||
<p>Returns the priority of the filter.</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
array
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_apply">apply</a>(<a href="../../../FFMpeg/Media/Video.html"><abbr title="FFMpeg\Media\Video">Video</abbr></a> $video, <a href="../../../FFMpeg/Format/VideoInterface.html"><abbr title="FFMpeg\Format\VideoInterface">VideoInterface</abbr></a> $format)
|
||||
<p>Applies the filter on the the Video media given an format.</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h2>Details</h2>
|
||||
|
||||
<h3 id="method___construct">
|
||||
<div class="location">at line 29</div>
|
||||
<code> public
|
||||
<strong>__construct</strong>(string $filter, int $priority)</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>A custom filter, useful if you want to build complex filters</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
<h4>Parameters</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td>string</td>
|
||||
<td>$filter</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>int</td>
|
||||
<td>$priority</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_getPriority">
|
||||
<div class="location">at line 38</div>
|
||||
<code> public integer
|
||||
<strong>getPriority</strong>()</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Returns the priority of the filter.</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td>integer</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_apply">
|
||||
<div class="location">at line 46</div>
|
||||
<code> public array
|
||||
<strong>apply</strong>(<a href="../../../FFMpeg/Media/Video.html"><abbr title="FFMpeg\Media\Video">Video</abbr></a> $video, <a href="../../../FFMpeg/Format/VideoInterface.html"><abbr title="FFMpeg\Format\VideoInterface">VideoInterface</abbr></a> $format)</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Applies the filter on the the Video media given an format.</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
<h4>Parameters</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="../../../FFMpeg/Media/Video.html"><abbr title="FFMpeg\Media\Video">Video</abbr></a></td>
|
||||
<td>$video</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><a href="../../../FFMpeg/Format/VideoInterface.html"><abbr title="FFMpeg\Format\VideoInterface">VideoInterface</abbr></a></td>
|
||||
<td>$format</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td>array</td>
|
||||
<td>An array of arguments</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
</div>
|
||||
<div id="footer">
|
||||
Generated by <a href="http://sami.sensiolabs.org/" target="_top">Sami, the API Documentation Generator</a>.
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
|
|
@ -1,267 +0,0 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<meta name="robots" content="index, follow, all" />
|
||||
<title>FFMpeg\Filters\Video\FrameRateFilter | PHP-FFMpeg API</title>
|
||||
<link rel="stylesheet" type="text/css" href="../../../stylesheet.css">
|
||||
</head>
|
||||
<body id="class">
|
||||
<div class="header">
|
||||
<ul>
|
||||
<li><a href="../../../classes.html">Classes</a></li>
|
||||
<li><a href="../../../namespaces.html">Namespaces</a></li>
|
||||
<li><a href="../../../interfaces.html">Interfaces</a></li>
|
||||
<li><a href="../../../traits.html">Traits</a></li>
|
||||
<li><a href="../../../doc-index.html">Index</a></li>
|
||||
|
||||
</ul>
|
||||
|
||||
<div id="title">PHP-FFMpeg API</div>
|
||||
|
||||
<div class="type">Class</div>
|
||||
<h1><a href="../../../FFMpeg/Filters/Video.html">FFMpeg\Filters\Video</a>\FrameRateFilter</h1>
|
||||
</div>
|
||||
<div class="content">
|
||||
<p> class
|
||||
<strong>FrameRateFilter</strong> implements
|
||||
<a href="../../../FFMpeg/Filters/Video/VideoFilterInterface.html"><abbr title="FFMpeg\Filters\Video\VideoFilterInterface">VideoFilterInterface</abbr></a></p>
|
||||
|
||||
|
||||
|
||||
|
||||
<h2>Methods</h2>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td class="type">
|
||||
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method___construct">__construct</a>(<a href="../../../FFMpeg/Coordinate/FrameRate.html"><abbr title="FFMpeg\Coordinate\FrameRate">FrameRate</abbr></a> $rate, $gop, $priority)
|
||||
<p>
|
||||
</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
integer
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_getPriority">getPriority</a>()
|
||||
<p>Returns the priority of the filter.</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
<a href="../../../FFMpeg/Coordinate/FrameRate.html"><abbr title="FFMpeg\Coordinate\FrameRate">FrameRate</abbr></a>
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_getFrameRate">getFrameRate</a>()
|
||||
<p>Returns the frame rate.</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
Integer
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_getGOP">getGOP</a>()
|
||||
<p>Returns the GOP size.</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
array
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_apply">apply</a>(<a href="../../../FFMpeg/Media/Video.html"><abbr title="FFMpeg\Media\Video">Video</abbr></a> $video, <a href="../../../FFMpeg/Format/VideoInterface.html"><abbr title="FFMpeg\Format\VideoInterface">VideoInterface</abbr></a> $format)
|
||||
<p>Applies the filter on the the Video media given an format.</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h2>Details</h2>
|
||||
|
||||
<h3 id="method___construct">
|
||||
<div class="location">at line 24</div>
|
||||
<code> public
|
||||
<strong>__construct</strong>(<a href="../../../FFMpeg/Coordinate/FrameRate.html"><abbr title="FFMpeg\Coordinate\FrameRate">FrameRate</abbr></a> $rate, $gop, $priority)</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>
|
||||
</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
<h4>Parameters</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="../../../FFMpeg/Coordinate/FrameRate.html"><abbr title="FFMpeg\Coordinate\FrameRate">FrameRate</abbr></a></td>
|
||||
<td>$rate</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td></td>
|
||||
<td>$gop</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td></td>
|
||||
<td>$priority</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_getPriority">
|
||||
<div class="location">at line 34</div>
|
||||
<code> public integer
|
||||
<strong>getPriority</strong>()</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Returns the priority of the filter.</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td>integer</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_getFrameRate">
|
||||
<div class="location">at line 44</div>
|
||||
<code> public <a href="../../../FFMpeg/Coordinate/FrameRate.html"><abbr title="FFMpeg\Coordinate\FrameRate">FrameRate</abbr></a>
|
||||
<strong>getFrameRate</strong>()</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Returns the frame rate.</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="../../../FFMpeg/Coordinate/FrameRate.html"><abbr title="FFMpeg\Coordinate\FrameRate">FrameRate</abbr></a></td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_getGOP">
|
||||
<div class="location">at line 56</div>
|
||||
<code> public Integer
|
||||
<strong>getGOP</strong>()</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Returns the GOP size.</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td>Integer</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
<h4>See also</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td>https://wikipedia.org/wiki/Group_of_pictures</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_apply">
|
||||
<div class="location">at line 64</div>
|
||||
<code> public array
|
||||
<strong>apply</strong>(<a href="../../../FFMpeg/Media/Video.html"><abbr title="FFMpeg\Media\Video">Video</abbr></a> $video, <a href="../../../FFMpeg/Format/VideoInterface.html"><abbr title="FFMpeg\Format\VideoInterface">VideoInterface</abbr></a> $format)</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Applies the filter on the the Video media given an format.</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
<h4>Parameters</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="../../../FFMpeg/Media/Video.html"><abbr title="FFMpeg\Media\Video">Video</abbr></a></td>
|
||||
<td>$video</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><a href="../../../FFMpeg/Format/VideoInterface.html"><abbr title="FFMpeg\Format\VideoInterface">VideoInterface</abbr></a></td>
|
||||
<td>$format</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td>array</td>
|
||||
<td>An array of arguments</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
</div>
|
||||
<div id="footer">
|
||||
Generated by <a href="http://sami.sensiolabs.org/" target="_top">Sami, the API Documentation Generator</a>.
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
|
|
@ -1,343 +0,0 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<meta name="robots" content="index, follow, all" />
|
||||
<title>FFMpeg\Filters\Video\ResizeFilter | PHP-FFMpeg API</title>
|
||||
<link rel="stylesheet" type="text/css" href="../../../stylesheet.css">
|
||||
</head>
|
||||
<body id="class">
|
||||
<div class="header">
|
||||
<ul>
|
||||
<li><a href="../../../classes.html">Classes</a></li>
|
||||
<li><a href="../../../namespaces.html">Namespaces</a></li>
|
||||
<li><a href="../../../interfaces.html">Interfaces</a></li>
|
||||
<li><a href="../../../traits.html">Traits</a></li>
|
||||
<li><a href="../../../doc-index.html">Index</a></li>
|
||||
|
||||
</ul>
|
||||
|
||||
<div id="title">PHP-FFMpeg API</div>
|
||||
|
||||
<div class="type">Class</div>
|
||||
<h1><a href="../../../FFMpeg/Filters/Video.html">FFMpeg\Filters\Video</a>\ResizeFilter</h1>
|
||||
</div>
|
||||
<div class="content">
|
||||
<p> class
|
||||
<strong>ResizeFilter</strong> implements
|
||||
<a href="../../../FFMpeg/Filters/Video/VideoFilterInterface.html"><abbr title="FFMpeg\Filters\Video\VideoFilterInterface">VideoFilterInterface</abbr></a></p>
|
||||
|
||||
|
||||
<h2>Constants</h2>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td>RESIZEMODE_FIT</td>
|
||||
<td class="last">
|
||||
<p><em>fits to the dimensions, might introduce anamorphosis</em></p>
|
||||
<p>
|
||||
</p>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>RESIZEMODE_INSET</td>
|
||||
<td class="last">
|
||||
<p><em>resizes the video inside the given dimension, no anamorphosis</em></p>
|
||||
<p>
|
||||
</p>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>RESIZEMODE_SCALE_WIDTH</td>
|
||||
<td class="last">
|
||||
<p><em>resizes the video to fit the dimension width, no anamorphosis</em></p>
|
||||
<p>
|
||||
</p>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>RESIZEMODE_SCALE_HEIGHT</td>
|
||||
<td class="last">
|
||||
<p><em>resizes the video to fit the dimension height, no anamorphosis</em></p>
|
||||
<p>
|
||||
</p>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
<h2>Methods</h2>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td class="type">
|
||||
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method___construct">__construct</a>(<a href="../../../FFMpeg/Coordinate/Dimension.html"><abbr title="FFMpeg\Coordinate\Dimension">Dimension</abbr></a> $dimension, $mode = self::RESIZEMODE_FIT, $forceStandards = true, $priority)
|
||||
<p>
|
||||
</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
integer
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_getPriority">getPriority</a>()
|
||||
<p>Returns the priority of the filter.</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
<a href="../../../FFMpeg/Coordinate/Dimension.html"><abbr title="FFMpeg\Coordinate\Dimension">Dimension</abbr></a>
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_getDimension">getDimension</a>()
|
||||
<p>
|
||||
</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
string
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_getMode">getMode</a>()
|
||||
<p>
|
||||
</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
Boolean
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_areStandardsForced">areStandardsForced</a>()
|
||||
<p>
|
||||
</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
array
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_apply">apply</a>(<a href="../../../FFMpeg/Media/Video.html"><abbr title="FFMpeg\Media\Video">Video</abbr></a> $video, <a href="../../../FFMpeg/Format/VideoInterface.html"><abbr title="FFMpeg\Format\VideoInterface">VideoInterface</abbr></a> $format)
|
||||
<p>Applies the filter on the the Video media given an format.</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h2>Details</h2>
|
||||
|
||||
<h3 id="method___construct">
|
||||
<div class="location">at line 39</div>
|
||||
<code> public
|
||||
<strong>__construct</strong>(<a href="../../../FFMpeg/Coordinate/Dimension.html"><abbr title="FFMpeg\Coordinate\Dimension">Dimension</abbr></a> $dimension, $mode = self::RESIZEMODE_FIT, $forceStandards = true, $priority)</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>
|
||||
</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
<h4>Parameters</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="../../../FFMpeg/Coordinate/Dimension.html"><abbr title="FFMpeg\Coordinate\Dimension">Dimension</abbr></a></td>
|
||||
<td>$dimension</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td></td>
|
||||
<td>$mode</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td></td>
|
||||
<td>$forceStandards</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td></td>
|
||||
<td>$priority</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_getPriority">
|
||||
<div class="location">at line 50</div>
|
||||
<code> public integer
|
||||
<strong>getPriority</strong>()</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Returns the priority of the filter.</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td>integer</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_getDimension">
|
||||
<div class="location">at line 58</div>
|
||||
<code> public <a href="../../../FFMpeg/Coordinate/Dimension.html"><abbr title="FFMpeg\Coordinate\Dimension">Dimension</abbr></a>
|
||||
<strong>getDimension</strong>()</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>
|
||||
</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="../../../FFMpeg/Coordinate/Dimension.html"><abbr title="FFMpeg\Coordinate\Dimension">Dimension</abbr></a></td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_getMode">
|
||||
<div class="location">at line 66</div>
|
||||
<code> public string
|
||||
<strong>getMode</strong>()</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>
|
||||
</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td>string</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_areStandardsForced">
|
||||
<div class="location">at line 74</div>
|
||||
<code> public Boolean
|
||||
<strong>areStandardsForced</strong>()</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>
|
||||
</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td>Boolean</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_apply">
|
||||
<div class="location">at line 82</div>
|
||||
<code> public array
|
||||
<strong>apply</strong>(<a href="../../../FFMpeg/Media/Video.html"><abbr title="FFMpeg\Media\Video">Video</abbr></a> $video, <a href="../../../FFMpeg/Format/VideoInterface.html"><abbr title="FFMpeg\Format\VideoInterface">VideoInterface</abbr></a> $format)</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Applies the filter on the the Video media given an format.</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
<h4>Parameters</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="../../../FFMpeg/Media/Video.html"><abbr title="FFMpeg\Media\Video">Video</abbr></a></td>
|
||||
<td>$video</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><a href="../../../FFMpeg/Format/VideoInterface.html"><abbr title="FFMpeg\Format\VideoInterface">VideoInterface</abbr></a></td>
|
||||
<td>$format</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td>array</td>
|
||||
<td>An array of arguments</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
</div>
|
||||
<div id="footer">
|
||||
Generated by <a href="http://sami.sensiolabs.org/" target="_top">Sami, the API Documentation Generator</a>.
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
|
|
@ -1,250 +0,0 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<meta name="robots" content="index, follow, all" />
|
||||
<title>FFMpeg\Filters\Video\RotateFilter | PHP-FFMpeg API</title>
|
||||
<link rel="stylesheet" type="text/css" href="../../../stylesheet.css">
|
||||
</head>
|
||||
<body id="class">
|
||||
<div class="header">
|
||||
<ul>
|
||||
<li><a href="../../../classes.html">Classes</a></li>
|
||||
<li><a href="../../../namespaces.html">Namespaces</a></li>
|
||||
<li><a href="../../../interfaces.html">Interfaces</a></li>
|
||||
<li><a href="../../../traits.html">Traits</a></li>
|
||||
<li><a href="../../../doc-index.html">Index</a></li>
|
||||
|
||||
</ul>
|
||||
|
||||
<div id="title">PHP-FFMpeg API</div>
|
||||
|
||||
<div class="type">Class</div>
|
||||
<h1><a href="../../../FFMpeg/Filters/Video.html">FFMpeg\Filters\Video</a>\RotateFilter</h1>
|
||||
</div>
|
||||
<div class="content">
|
||||
<p> class
|
||||
<strong>RotateFilter</strong> implements
|
||||
<a href="../../../FFMpeg/Filters/Video/VideoFilterInterface.html"><abbr title="FFMpeg\Filters\Video\VideoFilterInterface">VideoFilterInterface</abbr></a></p>
|
||||
|
||||
|
||||
<h2>Constants</h2>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td>ROTATE_90</td>
|
||||
<td class="last">
|
||||
<p><em>
|
||||
</em></p>
|
||||
<p>
|
||||
</p>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>ROTATE_180</td>
|
||||
<td class="last">
|
||||
<p><em>
|
||||
</em></p>
|
||||
<p>
|
||||
</p>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>ROTATE_270</td>
|
||||
<td class="last">
|
||||
<p><em>
|
||||
</em></p>
|
||||
<p>
|
||||
</p>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
<h2>Methods</h2>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td class="type">
|
||||
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method___construct">__construct</a>($angle, $priority)
|
||||
<p>
|
||||
</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
integer
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_getPriority">getPriority</a>()
|
||||
<p>Returns the priority of the filter.</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
<a href="../../../FFMpeg/Coordinate/Dimension.html"><abbr title="FFMpeg\Coordinate\Dimension">Dimension</abbr></a>
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_getAngle">getAngle</a>()
|
||||
<p>
|
||||
</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
array
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_apply">apply</a>(<a href="../../../FFMpeg/Media/Video.html"><abbr title="FFMpeg\Media\Video">Video</abbr></a> $video, <a href="../../../FFMpeg/Format/VideoInterface.html"><abbr title="FFMpeg\Format\VideoInterface">VideoInterface</abbr></a> $format)
|
||||
<p>Applies the filter on the the Video media given an format.</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h2>Details</h2>
|
||||
|
||||
<h3 id="method___construct">
|
||||
<div class="location">at line 30</div>
|
||||
<code> public
|
||||
<strong>__construct</strong>($angle, $priority)</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>
|
||||
</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
<h4>Parameters</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td></td>
|
||||
<td>$angle</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td></td>
|
||||
<td>$priority</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_getPriority">
|
||||
<div class="location">at line 39</div>
|
||||
<code> public integer
|
||||
<strong>getPriority</strong>()</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Returns the priority of the filter.</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td>integer</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_getAngle">
|
||||
<div class="location">at line 47</div>
|
||||
<code> public <a href="../../../FFMpeg/Coordinate/Dimension.html"><abbr title="FFMpeg\Coordinate\Dimension">Dimension</abbr></a>
|
||||
<strong>getAngle</strong>()</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>
|
||||
</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="../../../FFMpeg/Coordinate/Dimension.html"><abbr title="FFMpeg\Coordinate\Dimension">Dimension</abbr></a></td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_apply">
|
||||
<div class="location">at line 55</div>
|
||||
<code> public array
|
||||
<strong>apply</strong>(<a href="../../../FFMpeg/Media/Video.html"><abbr title="FFMpeg\Media\Video">Video</abbr></a> $video, <a href="../../../FFMpeg/Format/VideoInterface.html"><abbr title="FFMpeg\Format\VideoInterface">VideoInterface</abbr></a> $format)</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Applies the filter on the the Video media given an format.</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
<h4>Parameters</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="../../../FFMpeg/Media/Video.html"><abbr title="FFMpeg\Media\Video">Video</abbr></a></td>
|
||||
<td>$video</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><a href="../../../FFMpeg/Format/VideoInterface.html"><abbr title="FFMpeg\Format\VideoInterface">VideoInterface</abbr></a></td>
|
||||
<td>$format</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td>array</td>
|
||||
<td>An array of arguments</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
</div>
|
||||
<div id="footer">
|
||||
Generated by <a href="http://sami.sensiolabs.org/" target="_top">Sami, the API Documentation Generator</a>.
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
|
|
@ -1,179 +0,0 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<meta name="robots" content="index, follow, all" />
|
||||
<title>FFMpeg\Filters\Video\SynchronizeFilter | PHP-FFMpeg API</title>
|
||||
<link rel="stylesheet" type="text/css" href="../../../stylesheet.css">
|
||||
</head>
|
||||
<body id="class">
|
||||
<div class="header">
|
||||
<ul>
|
||||
<li><a href="../../../classes.html">Classes</a></li>
|
||||
<li><a href="../../../namespaces.html">Namespaces</a></li>
|
||||
<li><a href="../../../interfaces.html">Interfaces</a></li>
|
||||
<li><a href="../../../traits.html">Traits</a></li>
|
||||
<li><a href="../../../doc-index.html">Index</a></li>
|
||||
|
||||
</ul>
|
||||
|
||||
<div id="title">PHP-FFMpeg API</div>
|
||||
|
||||
<div class="type">Class</div>
|
||||
<h1><a href="../../../FFMpeg/Filters/Video.html">FFMpeg\Filters\Video</a>\SynchronizeFilter</h1>
|
||||
</div>
|
||||
<div class="content">
|
||||
<p> class
|
||||
<strong>SynchronizeFilter</strong> implements
|
||||
<a href="../../../FFMpeg/Filters/Video/VideoFilterInterface.html"><abbr title="FFMpeg\Filters\Video\VideoFilterInterface">VideoFilterInterface</abbr></a></p>
|
||||
|
||||
<div class="description">
|
||||
<p>Synchronizes audio and video in case of desynchronized movies.</p>
|
||||
<p>
|
||||
</p>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<h2>Methods</h2>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td class="type">
|
||||
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method___construct">__construct</a>($priority = 12)
|
||||
<p>
|
||||
</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
integer
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_getPriority">getPriority</a>()
|
||||
<p>Returns the priority of the filter.</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
array
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_apply">apply</a>(<a href="../../../FFMpeg/Media/Video.html"><abbr title="FFMpeg\Media\Video">Video</abbr></a> $video, <a href="../../../FFMpeg/Format/VideoInterface.html"><abbr title="FFMpeg\Format\VideoInterface">VideoInterface</abbr></a> $format)
|
||||
<p>Applies the filter on the the Video media given an format.</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h2>Details</h2>
|
||||
|
||||
<h3 id="method___construct">
|
||||
<div class="location">at line 24</div>
|
||||
<code> public
|
||||
<strong>__construct</strong>($priority = 12)</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>
|
||||
</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
<h4>Parameters</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td></td>
|
||||
<td>$priority</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_getPriority">
|
||||
<div class="location">at line 32</div>
|
||||
<code> public integer
|
||||
<strong>getPriority</strong>()</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Returns the priority of the filter.</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td>integer</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_apply">
|
||||
<div class="location">at line 40</div>
|
||||
<code> public array
|
||||
<strong>apply</strong>(<a href="../../../FFMpeg/Media/Video.html"><abbr title="FFMpeg\Media\Video">Video</abbr></a> $video, <a href="../../../FFMpeg/Format/VideoInterface.html"><abbr title="FFMpeg\Format\VideoInterface">VideoInterface</abbr></a> $format)</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Applies the filter on the the Video media given an format.</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
<h4>Parameters</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="../../../FFMpeg/Media/Video.html"><abbr title="FFMpeg\Media\Video">Video</abbr></a></td>
|
||||
<td>$video</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><a href="../../../FFMpeg/Format/VideoInterface.html"><abbr title="FFMpeg\Format\VideoInterface">VideoInterface</abbr></a></td>
|
||||
<td>$format</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td>array</td>
|
||||
<td>An array of arguments</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
</div>
|
||||
<div id="footer">
|
||||
Generated by <a href="http://sami.sensiolabs.org/" target="_top">Sami, the API Documentation Generator</a>.
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
|
|
@ -1,135 +0,0 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<meta name="robots" content="index, follow, all" />
|
||||
<title>FFMpeg\Filters\Video\VideoFilterInterface | PHP-FFMpeg API</title>
|
||||
<link rel="stylesheet" type="text/css" href="../../../stylesheet.css">
|
||||
</head>
|
||||
<body id="class">
|
||||
<div class="header">
|
||||
<ul>
|
||||
<li><a href="../../../classes.html">Classes</a></li>
|
||||
<li><a href="../../../namespaces.html">Namespaces</a></li>
|
||||
<li><a href="../../../interfaces.html">Interfaces</a></li>
|
||||
<li><a href="../../../traits.html">Traits</a></li>
|
||||
<li><a href="../../../doc-index.html">Index</a></li>
|
||||
|
||||
</ul>
|
||||
|
||||
<div id="title">PHP-FFMpeg API</div>
|
||||
|
||||
<div class="type">Interface</div>
|
||||
<h1><a href="../../../FFMpeg/Filters/Video.html">FFMpeg\Filters\Video</a>\VideoFilterInterface</h1>
|
||||
</div>
|
||||
<div class="content">
|
||||
<p> interface
|
||||
<strong>VideoFilterInterface</strong> implements
|
||||
<a href="../../../FFMpeg/Filters/FilterInterface.html"><abbr title="FFMpeg\Filters\FilterInterface">FilterInterface</abbr></a></p>
|
||||
|
||||
|
||||
|
||||
|
||||
<h2>Methods</h2>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td class="type">
|
||||
integer
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_getPriority">getPriority</a>()
|
||||
<p>Returns the priority of the filter.</p>
|
||||
</td>
|
||||
<td><small>from <a href="../../../FFMpeg/Filters/FilterInterface.html#method_getPriority"><abbr title="FFMpeg\Filters\FilterInterface">FilterInterface</abbr></a></small></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
array
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_apply">apply</a>(<a href="../../../FFMpeg/Media/Video.html"><abbr title="FFMpeg\Media\Video">Video</abbr></a> $video, <a href="../../../FFMpeg/Format/VideoInterface.html"><abbr title="FFMpeg\Format\VideoInterface">VideoInterface</abbr></a> $format)
|
||||
<p>Applies the filter on the the Video media given an format.</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h2>Details</h2>
|
||||
|
||||
<h3 id="method_getPriority">
|
||||
<div class="location">in <a href="../../../FFMpeg/Filters/FilterInterface.html#method_getPriority"><abbr title="FFMpeg\Filters\FilterInterface">FilterInterface</abbr></a> at line 21</div>
|
||||
<code> public integer
|
||||
<strong>getPriority</strong>()</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Returns the priority of the filter.</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td>integer</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_apply">
|
||||
<div class="location">at line 28</div>
|
||||
<code> public array
|
||||
<strong>apply</strong>(<a href="../../../FFMpeg/Media/Video.html"><abbr title="FFMpeg\Media\Video">Video</abbr></a> $video, <a href="../../../FFMpeg/Format/VideoInterface.html"><abbr title="FFMpeg\Format\VideoInterface">VideoInterface</abbr></a> $format)</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Applies the filter on the the Video media given an format.</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
<h4>Parameters</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="../../../FFMpeg/Media/Video.html"><abbr title="FFMpeg\Media\Video">Video</abbr></a></td>
|
||||
<td>$video</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><a href="../../../FFMpeg/Format/VideoInterface.html"><abbr title="FFMpeg\Format\VideoInterface">VideoInterface</abbr></a></td>
|
||||
<td>$format</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td>array</td>
|
||||
<td>An array of arguments</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
</div>
|
||||
<div id="footer">
|
||||
Generated by <a href="http://sami.sensiolabs.org/" target="_top">Sami, the API Documentation Generator</a>.
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
|
|
@ -1,474 +0,0 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<meta name="robots" content="index, follow, all" />
|
||||
<title>FFMpeg\Filters\Video\VideoFilters | PHP-FFMpeg API</title>
|
||||
<link rel="stylesheet" type="text/css" href="../../../stylesheet.css">
|
||||
</head>
|
||||
<body id="class">
|
||||
<div class="header">
|
||||
<ul>
|
||||
<li><a href="../../../classes.html">Classes</a></li>
|
||||
<li><a href="../../../namespaces.html">Namespaces</a></li>
|
||||
<li><a href="../../../interfaces.html">Interfaces</a></li>
|
||||
<li><a href="../../../traits.html">Traits</a></li>
|
||||
<li><a href="../../../doc-index.html">Index</a></li>
|
||||
|
||||
</ul>
|
||||
|
||||
<div id="title">PHP-FFMpeg API</div>
|
||||
|
||||
<div class="type">Class</div>
|
||||
<h1><a href="../../../FFMpeg/Filters/Video.html">FFMpeg\Filters\Video</a>\VideoFilters</h1>
|
||||
</div>
|
||||
<div class="content">
|
||||
<p> class
|
||||
<strong>VideoFilters</strong> extends <a href="../../../FFMpeg/Filters/Audio/AudioFilters.html"><abbr title="FFMpeg\Filters\Audio\AudioFilters">AudioFilters</abbr></a></p>
|
||||
|
||||
|
||||
|
||||
|
||||
<h2>Methods</h2>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td class="type">
|
||||
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method___construct">__construct</a>(<a href="../../../FFMpeg/Media/Video.html"><abbr title="FFMpeg\Media\Video">Video</abbr></a> $media)
|
||||
<p>
|
||||
</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
<a href="../../../FFMpeg/Filters/Audio/AudioFilters.html"><abbr title="FFMpeg\Filters\Audio\AudioFilters">AudioFilters</abbr></a>
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_resample">resample</a>(Integer $rate)
|
||||
<p>Resamples the audio file.</p>
|
||||
</td>
|
||||
<td><small>from <a href="../../../FFMpeg/Filters/Audio/AudioFilters.html#method_resample"><abbr title="FFMpeg\Filters\Audio\AudioFilters">AudioFilters</abbr></a></small></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
<a href="../../../FFMpeg/Filters/Video/VideoFilters.html"><abbr title="FFMpeg\Filters\Video\VideoFilters">VideoFilters</abbr></a>
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_resize">resize</a>(<a href="../../../FFMpeg/Coordinate/Dimension.html"><abbr title="FFMpeg\Coordinate\Dimension">Dimension</abbr></a> $dimension, string $mode = ResizeFilter::RESIZEMODE_FIT, Boolean $forceStandards = true)
|
||||
<p>Resizes a video to a given dimension.</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
<a href="../../../FFMpeg/Filters/Video/VideoFilters.html"><abbr title="FFMpeg\Filters\Video\VideoFilters">VideoFilters</abbr></a>
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_framerate">framerate</a>(<a href="../../../FFMpeg/Coordinate/FrameRate.html"><abbr title="FFMpeg\Coordinate\FrameRate">FrameRate</abbr></a> $framerate, <abbr title="FFMpeg\Filters\Video\type">type</abbr> $gop)
|
||||
<p>Changes the video framerate.</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
<a href="../../../FFMpeg/Filters/Video/VideoFilters.html"><abbr title="FFMpeg\Filters\Video\VideoFilters">VideoFilters</abbr></a>
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_synchronize">synchronize</a>()
|
||||
<p>Synchronizes audio and video.</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
<a href="../../../FFMpeg/Filters/Video/VideoFilters.html"><abbr title="FFMpeg\Filters\Video\VideoFilters">VideoFilters</abbr></a>
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_clip">clip</a>(<a href="../../../FFMpeg/Coordinate/TimeCode.html"><abbr title="FFMpeg\Coordinate\TimeCode">TimeCode</abbr></a> $start, <a href="../../../FFMpeg/Coordinate/TimeCode.html"><abbr title="FFMpeg\Coordinate\TimeCode">TimeCode</abbr></a> $duration = null)
|
||||
<p>Clips (cuts) the video.</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
<a href="../../../FFMpeg/Filters/Audio/AudioFilters.html"><abbr title="FFMpeg\Filters\Audio\AudioFilters">AudioFilters</abbr></a>
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_audioResample">audioResample</a>(Integer $rate)
|
||||
<p>Resamples the audio file.</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_rotate">rotate</a>($angle)
|
||||
<p>
|
||||
</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
<abbr title="FFMpeg\Filters\Video\$this">$this</abbr>
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_watermark">watermark</a>(string $imagePath, array $coordinates = array())
|
||||
<p>
|
||||
</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h2>Details</h2>
|
||||
|
||||
<h3 id="method___construct">
|
||||
<div class="location">at line 23</div>
|
||||
<code> public
|
||||
<strong>__construct</strong>(<a href="../../../FFMpeg/Media/Video.html"><abbr title="FFMpeg\Media\Video">Video</abbr></a> $media)</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>
|
||||
</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
<h4>Parameters</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="../../../FFMpeg/Media/Video.html"><abbr title="FFMpeg\Media\Video">Video</abbr></a></td>
|
||||
<td>$media</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_resample">
|
||||
<div class="location">in <a href="../../../FFMpeg/Filters/Audio/AudioFilters.html#method_resample"><abbr title="FFMpeg\Filters\Audio\AudioFilters">AudioFilters</abbr></a> at line 23</div>
|
||||
<code> public <a href="../../../FFMpeg/Filters/Audio/AudioFilters.html"><abbr title="FFMpeg\Filters\Audio\AudioFilters">AudioFilters</abbr></a>
|
||||
<strong>resample</strong>(Integer $rate)</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Resamples the audio file.</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
<h4>Parameters</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td>Integer</td>
|
||||
<td>$rate</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="../../../FFMpeg/Filters/Audio/AudioFilters.html"><abbr title="FFMpeg\Filters\Audio\AudioFilters">AudioFilters</abbr></a></td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_resize">
|
||||
<div class="location">at line 37</div>
|
||||
<code> public <a href="../../../FFMpeg/Filters/Video/VideoFilters.html"><abbr title="FFMpeg\Filters\Video\VideoFilters">VideoFilters</abbr></a>
|
||||
<strong>resize</strong>(<a href="../../../FFMpeg/Coordinate/Dimension.html"><abbr title="FFMpeg\Coordinate\Dimension">Dimension</abbr></a> $dimension, string $mode = ResizeFilter::RESIZEMODE_FIT, Boolean $forceStandards = true)</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Resizes a video to a given dimension.</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
<h4>Parameters</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="../../../FFMpeg/Coordinate/Dimension.html"><abbr title="FFMpeg\Coordinate\Dimension">Dimension</abbr></a></td>
|
||||
<td>$dimension</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>string</td>
|
||||
<td>$mode</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Boolean</td>
|
||||
<td>$forceStandards</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="../../../FFMpeg/Filters/Video/VideoFilters.html"><abbr title="FFMpeg\Filters\Video\VideoFilters">VideoFilters</abbr></a></td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_framerate">
|
||||
<div class="location">at line 52</div>
|
||||
<code> public <a href="../../../FFMpeg/Filters/Video/VideoFilters.html"><abbr title="FFMpeg\Filters\Video\VideoFilters">VideoFilters</abbr></a>
|
||||
<strong>framerate</strong>(<a href="../../../FFMpeg/Coordinate/FrameRate.html"><abbr title="FFMpeg\Coordinate\FrameRate">FrameRate</abbr></a> $framerate, <abbr title="FFMpeg\Filters\Video\type">type</abbr> $gop)</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Changes the video framerate.</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
<h4>Parameters</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="../../../FFMpeg/Coordinate/FrameRate.html"><abbr title="FFMpeg\Coordinate\FrameRate">FrameRate</abbr></a></td>
|
||||
<td>$framerate</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><abbr title="FFMpeg\Filters\Video\type">type</abbr></td>
|
||||
<td>$gop</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="../../../FFMpeg/Filters/Video/VideoFilters.html"><abbr title="FFMpeg\Filters\Video\VideoFilters">VideoFilters</abbr></a></td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_synchronize">
|
||||
<div class="location">at line 64</div>
|
||||
<code> public <a href="../../../FFMpeg/Filters/Video/VideoFilters.html"><abbr title="FFMpeg\Filters\Video\VideoFilters">VideoFilters</abbr></a>
|
||||
<strong>synchronize</strong>()</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Synchronizes audio and video.</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="../../../FFMpeg/Filters/Video/VideoFilters.html"><abbr title="FFMpeg\Filters\Video\VideoFilters">VideoFilters</abbr></a></td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_clip">
|
||||
<div class="location">at line 79</div>
|
||||
<code> public <a href="../../../FFMpeg/Filters/Video/VideoFilters.html"><abbr title="FFMpeg\Filters\Video\VideoFilters">VideoFilters</abbr></a>
|
||||
<strong>clip</strong>(<a href="../../../FFMpeg/Coordinate/TimeCode.html"><abbr title="FFMpeg\Coordinate\TimeCode">TimeCode</abbr></a> $start, <a href="../../../FFMpeg/Coordinate/TimeCode.html"><abbr title="FFMpeg\Coordinate\TimeCode">TimeCode</abbr></a> $duration = null)</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Clips (cuts) the video.</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>$start</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><a href="../../../FFMpeg/Coordinate/TimeCode.html"><abbr title="FFMpeg\Coordinate\TimeCode">TimeCode</abbr></a></td>
|
||||
<td>$duration</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="../../../FFMpeg/Filters/Video/VideoFilters.html"><abbr title="FFMpeg\Filters\Video\VideoFilters">VideoFilters</abbr></a></td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_audioResample">
|
||||
<div class="location">at line 93</div>
|
||||
<code> public <a href="../../../FFMpeg/Filters/Audio/AudioFilters.html"><abbr title="FFMpeg\Filters\Audio\AudioFilters">AudioFilters</abbr></a>
|
||||
<strong>audioResample</strong>(Integer $rate)</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Resamples the audio file.</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
<h4>Parameters</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td>Integer</td>
|
||||
<td>$rate</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="../../../FFMpeg/Filters/Audio/AudioFilters.html"><abbr title="FFMpeg\Filters\Audio\AudioFilters">AudioFilters</abbr></a></td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_rotate">
|
||||
<div class="location">at line 100</div>
|
||||
<code> public
|
||||
<strong>rotate</strong>($angle)</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>
|
||||
</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
<h4>Parameters</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td></td>
|
||||
<td>$angle</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_watermark">
|
||||
<div class="location">at line 113</div>
|
||||
<code> public <abbr title="FFMpeg\Filters\Video\$this">$this</abbr>
|
||||
<strong>watermark</strong>(string $imagePath, array $coordinates = array())</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>
|
||||
</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
<h4>Parameters</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td>string</td>
|
||||
<td>$imagePath</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>array</td>
|
||||
<td>$coordinates</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><abbr title="FFMpeg\Filters\Video\$this">$this</abbr></td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
</div>
|
||||
<div id="footer">
|
||||
Generated by <a href="http://sami.sensiolabs.org/" target="_top">Sami, the API Documentation Generator</a>.
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
|
|
@ -1,186 +0,0 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<meta name="robots" content="index, follow, all" />
|
||||
<title>FFMpeg\Filters\Video\WatermarkFilter | PHP-FFMpeg API</title>
|
||||
<link rel="stylesheet" type="text/css" href="../../../stylesheet.css">
|
||||
</head>
|
||||
<body id="class">
|
||||
<div class="header">
|
||||
<ul>
|
||||
<li><a href="../../../classes.html">Classes</a></li>
|
||||
<li><a href="../../../namespaces.html">Namespaces</a></li>
|
||||
<li><a href="../../../interfaces.html">Interfaces</a></li>
|
||||
<li><a href="../../../traits.html">Traits</a></li>
|
||||
<li><a href="../../../doc-index.html">Index</a></li>
|
||||
|
||||
</ul>
|
||||
|
||||
<div id="title">PHP-FFMpeg API</div>
|
||||
|
||||
<div class="type">Class</div>
|
||||
<h1><a href="../../../FFMpeg/Filters/Video.html">FFMpeg\Filters\Video</a>\WatermarkFilter</h1>
|
||||
</div>
|
||||
<div class="content">
|
||||
<p> class
|
||||
<strong>WatermarkFilter</strong> implements
|
||||
<a href="../../../FFMpeg/Filters/Video/VideoFilterInterface.html"><abbr title="FFMpeg\Filters\Video\VideoFilterInterface">VideoFilterInterface</abbr></a></p>
|
||||
|
||||
|
||||
|
||||
|
||||
<h2>Methods</h2>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td class="type">
|
||||
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method___construct">__construct</a>($watermarkPath, array $coordinates = array(), $priority)
|
||||
<p>
|
||||
</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
integer
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_getPriority">getPriority</a>()
|
||||
<p>Returns the priority of the filter.</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
array
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_apply">apply</a>(<a href="../../../FFMpeg/Media/Video.html"><abbr title="FFMpeg\Media\Video">Video</abbr></a> $video, <a href="../../../FFMpeg/Format/VideoInterface.html"><abbr title="FFMpeg\Format\VideoInterface">VideoInterface</abbr></a> $format)
|
||||
<p>Applies the filter on the the Video media given an format.</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h2>Details</h2>
|
||||
|
||||
<h3 id="method___construct">
|
||||
<div class="location">at line 26</div>
|
||||
<code> public
|
||||
<strong>__construct</strong>($watermarkPath, array $coordinates = array(), $priority)</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>
|
||||
</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
<h4>Parameters</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td></td>
|
||||
<td>$watermarkPath</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>array</td>
|
||||
<td>$coordinates</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td></td>
|
||||
<td>$priority</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_getPriority">
|
||||
<div class="location">at line 36</div>
|
||||
<code> public integer
|
||||
<strong>getPriority</strong>()</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Returns the priority of the filter.</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td>integer</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_apply">
|
||||
<div class="location">at line 44</div>
|
||||
<code> public array
|
||||
<strong>apply</strong>(<a href="../../../FFMpeg/Media/Video.html"><abbr title="FFMpeg\Media\Video">Video</abbr></a> $video, <a href="../../../FFMpeg/Format/VideoInterface.html"><abbr title="FFMpeg\Format\VideoInterface">VideoInterface</abbr></a> $format)</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Applies the filter on the the Video media given an format.</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
<h4>Parameters</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="../../../FFMpeg/Media/Video.html"><abbr title="FFMpeg\Media\Video">Video</abbr></a></td>
|
||||
<td>$video</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><a href="../../../FFMpeg/Format/VideoInterface.html"><abbr title="FFMpeg\Format\VideoInterface">VideoInterface</abbr></a></td>
|
||||
<td>$format</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td>array</td>
|
||||
<td>An array of arguments</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
</div>
|
||||
<div id="footer">
|
||||
Generated by <a href="http://sami.sensiolabs.org/" target="_top">Sami, the API Documentation Generator</a>.
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
|
|
@ -1,9 +0,0 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<meta name="robots" content="index, follow, all" />
|
||||
<title>FFMpeg\Filters\Video | PHP-FFMpeg API</title>
|
||||
<link rel="stylesheet" type="text/css" href="../../../stylesheet.css">
|
||||
</head>
|
||||
</html>
|
||||
|
|
@ -1,9 +0,0 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<meta name="robots" content="index, follow, all" />
|
||||
<title>FFMpeg\Filters | PHP-FFMpeg API</title>
|
||||
<link rel="stylesheet" type="text/css" href="../../stylesheet.css">
|
||||
</head>
|
||||
</html>
|
||||
|
|
@ -1,61 +0,0 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<meta name="robots" content="index, follow, all" />
|
||||
<title>FFMpeg\Format | PHP-FFMpeg API</title>
|
||||
<link rel="stylesheet" type="text/css" href="../stylesheet.css">
|
||||
</head>
|
||||
<body id="overview">
|
||||
<div class="header">
|
||||
<ul>
|
||||
<li><a href="../classes.html">Classes</a></li>
|
||||
<li><a href="../namespaces.html">Namespaces</a></li>
|
||||
<li><a href="../interfaces.html">Interfaces</a></li>
|
||||
<li><a href="../traits.html">Traits</a></li>
|
||||
<li><a href="../doc-index.html">Index</a></li>
|
||||
|
||||
</ul>
|
||||
|
||||
<div id="title">PHP-FFMpeg API</div>
|
||||
|
||||
<div class="type">Namespace</div>
|
||||
<h1>FFMpeg\Format</h1>
|
||||
</div>
|
||||
<div class="content">
|
||||
|
||||
<h2>Interfaces</h2>
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="../FFMpeg/Format/AudioInterface.html"><abbr title="FFMpeg\Format\AudioInterface">AudioInterface</abbr></a></td>
|
||||
<td class="last">
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><a href="../FFMpeg/Format/FormatInterface.html"><abbr title="FFMpeg\Format\FormatInterface">FormatInterface</abbr></a></td>
|
||||
<td class="last">
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><a href="../FFMpeg/Format/FrameInterface.html"><abbr title="FFMpeg\Format\FrameInterface">FrameInterface</abbr></a></td>
|
||||
<td class="last">
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><a href="../FFMpeg/Format/ProgressableInterface.html"><abbr title="FFMpeg\Format\ProgressableInterface">ProgressableInterface</abbr></a></td>
|
||||
<td class="last">
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><a href="../FFMpeg/Format/VideoInterface.html"><abbr title="FFMpeg\Format\VideoInterface">VideoInterface</abbr></a></td>
|
||||
<td class="last">
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
</div>
|
||||
<div id="footer">
|
||||
Generated by <a href="http://sami.sensiolabs.org/" target="_top">Sami, the API Documentation Generator</a>.
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
|
|
@ -1,60 +0,0 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<meta name="robots" content="index, follow, all" />
|
||||
<title>FFMpeg\Format\Audio | PHP-FFMpeg API</title>
|
||||
<link rel="stylesheet" type="text/css" href="../../stylesheet.css">
|
||||
</head>
|
||||
<body id="overview">
|
||||
<div class="header">
|
||||
<ul>
|
||||
<li><a href="../../classes.html">Classes</a></li>
|
||||
<li><a href="../../namespaces.html">Namespaces</a></li>
|
||||
<li><a href="../../interfaces.html">Interfaces</a></li>
|
||||
<li><a href="../../traits.html">Traits</a></li>
|
||||
<li><a href="../../doc-index.html">Index</a></li>
|
||||
|
||||
</ul>
|
||||
|
||||
<div id="title">PHP-FFMpeg API</div>
|
||||
|
||||
<div class="type">Namespace</div>
|
||||
<h1>FFMpeg\Format\Audio</h1>
|
||||
</div>
|
||||
<div class="content">
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="../../FFMpeg/Format/Audio/Aac.html"><abbr title="FFMpeg\Format\Audio\Aac">Aac</abbr></a></td>
|
||||
<td class="last">The AAC audio format</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><a href="../../FFMpeg/Format/Audio/DefaultAudio.html"><abbr title="FFMpeg\Format\Audio\DefaultAudio">DefaultAudio</abbr></a></td>
|
||||
<td class="last">
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><a href="../../FFMpeg/Format/Audio/Flac.html"><abbr title="FFMpeg\Format\Audio\Flac">Flac</abbr></a></td>
|
||||
<td class="last">The Flac audio format</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><a href="../../FFMpeg/Format/Audio/Mp3.html"><abbr title="FFMpeg\Format\Audio\Mp3">Mp3</abbr></a></td>
|
||||
<td class="last">The MP3 audio format</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><a href="../../FFMpeg/Format/Audio/Vorbis.html"><abbr title="FFMpeg\Format\Audio\Vorbis">Vorbis</abbr></a></td>
|
||||
<td class="last">The Vorbis audio format</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><a href="../../FFMpeg/Format/Audio/Wav.html"><abbr title="FFMpeg\Format\Audio\Wav">Wav</abbr></a></td>
|
||||
<td class="last">The WAV audio format</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
</div>
|
||||
<div id="footer">
|
||||
Generated by <a href="http://sami.sensiolabs.org/" target="_top">Sami, the API Documentation Generator</a>.
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
|
|
@ -1,498 +0,0 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<meta name="robots" content="index, follow, all" />
|
||||
<title>FFMpeg\Format\Audio\Aac | PHP-FFMpeg API</title>
|
||||
<link rel="stylesheet" type="text/css" href="../../../stylesheet.css">
|
||||
</head>
|
||||
<body id="class">
|
||||
<div class="header">
|
||||
<ul>
|
||||
<li><a href="../../../classes.html">Classes</a></li>
|
||||
<li><a href="../../../namespaces.html">Namespaces</a></li>
|
||||
<li><a href="../../../interfaces.html">Interfaces</a></li>
|
||||
<li><a href="../../../traits.html">Traits</a></li>
|
||||
<li><a href="../../../doc-index.html">Index</a></li>
|
||||
|
||||
</ul>
|
||||
|
||||
<div id="title">PHP-FFMpeg API</div>
|
||||
|
||||
<div class="type">Class</div>
|
||||
<h1><a href="../../../FFMpeg/Format/Audio.html">FFMpeg\Format\Audio</a>\Aac</h1>
|
||||
</div>
|
||||
<div class="content">
|
||||
<p> class
|
||||
<strong>Aac</strong> extends <a href="../../../FFMpeg/Format/Audio/DefaultAudio.html"><abbr title="FFMpeg\Format\Audio\DefaultAudio">DefaultAudio</abbr></a></p>
|
||||
|
||||
<div class="description">
|
||||
<p>The AAC audio format</p>
|
||||
<p>
|
||||
</p>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<h2>Methods</h2>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td class="type">
|
||||
<abbr title="FFMpeg\Format\array()">array()</abbr>
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_getExtraParams">getExtraParams</a>()
|
||||
<p>Returns an array of extra parameters to add to ffmpeg commandline.</p>
|
||||
</td>
|
||||
<td><small>from <a href="../../../FFMpeg/Format/Audio/DefaultAudio.html#method_getExtraParams"><abbr title="FFMpeg\Format\Audio\DefaultAudio">DefaultAudio</abbr></a></small></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
string
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_getAudioCodec">getAudioCodec</a>()
|
||||
<p>Returns the audio codec.</p>
|
||||
</td>
|
||||
<td><small>from <a href="../../../FFMpeg/Format/Audio/DefaultAudio.html#method_getAudioCodec"><abbr title="FFMpeg\Format\Audio\DefaultAudio">DefaultAudio</abbr></a></small></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_setAudioCodec">setAudioCodec</a>(string $audioCodec)
|
||||
<p>Sets the audio codec, Should be in the available ones, otherwise an exception is thrown.</p>
|
||||
</td>
|
||||
<td><small>from <a href="../../../FFMpeg/Format/Audio/DefaultAudio.html#method_setAudioCodec"><abbr title="FFMpeg\Format\Audio\DefaultAudio">DefaultAudio</abbr></a></small></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
integer
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_getAudioKiloBitrate">getAudioKiloBitrate</a>()
|
||||
<p>Gets the audio kiloBitrate value.</p>
|
||||
</td>
|
||||
<td><small>from <a href="../../../FFMpeg/Format/Audio/DefaultAudio.html#method_getAudioKiloBitrate"><abbr title="FFMpeg\Format\Audio\DefaultAudio">DefaultAudio</abbr></a></small></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_setAudioKiloBitrate">setAudioKiloBitrate</a>(integer $kiloBitrate)
|
||||
<p>Sets the kiloBitrate value.</p>
|
||||
</td>
|
||||
<td><small>from <a href="../../../FFMpeg/Format/Audio/DefaultAudio.html#method_setAudioKiloBitrate"><abbr title="FFMpeg\Format\Audio\DefaultAudio">DefaultAudio</abbr></a></small></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
integer
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_getAudioChannels">getAudioChannels</a>()
|
||||
<p>Gets the audio channels value.</p>
|
||||
</td>
|
||||
<td><small>from <a href="../../../FFMpeg/Format/Audio/DefaultAudio.html#method_getAudioChannels"><abbr title="FFMpeg\Format\Audio\DefaultAudio">DefaultAudio</abbr></a></small></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_setAudioChannels">setAudioChannels</a>(integer $channels)
|
||||
<p>Sets the channels value.</p>
|
||||
</td>
|
||||
<td><small>from <a href="../../../FFMpeg/Format/Audio/DefaultAudio.html#method_setAudioChannels"><abbr title="FFMpeg\Format\Audio\DefaultAudio">DefaultAudio</abbr></a></small></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
array
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_createProgressListener">createProgressListener</a>(<a href="../../../FFMpeg/Media/MediaTypeInterface.html"><abbr title="FFMpeg\Media\MediaTypeInterface">MediaTypeInterface</abbr></a> $media, <a href="../../../FFMpeg/FFProbe.html"><abbr title="FFMpeg\FFProbe">FFProbe</abbr></a> $ffprobe, Integer $pass, Integer $total)
|
||||
<p>Creates the progress listener.</p>
|
||||
</td>
|
||||
<td><small>from <a href="../../../FFMpeg/Format/Audio/DefaultAudio.html#method_createProgressListener"><abbr title="FFMpeg\Format\Audio\DefaultAudio">DefaultAudio</abbr></a></small></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
string
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_getPasses">getPasses</a>()
|
||||
<p>Returns the number of passes.</p>
|
||||
</td>
|
||||
<td><small>from <a href="../../../FFMpeg/Format/Audio/DefaultAudio.html#method_getPasses"><abbr title="FFMpeg\Format\Audio\DefaultAudio">DefaultAudio</abbr></a></small></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method___construct">__construct</a>()
|
||||
<p>
|
||||
</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
array
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_getAvailableAudioCodecs">getAvailableAudioCodecs</a>()
|
||||
<p>Returns the list of available audio codecs for this format.</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h2>Details</h2>
|
||||
|
||||
<h3 id="method_getExtraParams">
|
||||
<div class="location">in <a href="../../../FFMpeg/Format/Audio/DefaultAudio.html#method_getExtraParams"><abbr title="FFMpeg\Format\Audio\DefaultAudio">DefaultAudio</abbr></a> at line 36</div>
|
||||
<code> public <abbr title="FFMpeg\Format\array()">array()</abbr>
|
||||
<strong>getExtraParams</strong>()</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Returns an array of extra parameters to add to ffmpeg commandline.</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><abbr title="FFMpeg\Format\array()">array()</abbr></td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_getAudioCodec">
|
||||
<div class="location">in <a href="../../../FFMpeg/Format/Audio/DefaultAudio.html#method_getAudioCodec"><abbr title="FFMpeg\Format\Audio\DefaultAudio">DefaultAudio</abbr></a> at line 44</div>
|
||||
<code> public string
|
||||
<strong>getAudioCodec</strong>()</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Returns the audio codec.</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td>string</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_setAudioCodec">
|
||||
<div class="location">in <a href="../../../FFMpeg/Format/Audio/DefaultAudio.html#method_setAudioCodec"><abbr title="FFMpeg\Format\Audio\DefaultAudio">DefaultAudio</abbr></a> at line 57</div>
|
||||
<code> public
|
||||
<strong>setAudioCodec</strong>(string $audioCodec)</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Sets the audio codec, Should be in the available ones, otherwise an exception is thrown.</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
<h4>Parameters</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td>string</td>
|
||||
<td>$audioCodec</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
<h4>Exceptions</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="http://php.net/InvalidArgumentException"><abbr title="InvalidArgumentException">InvalidArgumentException</abbr></a></td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_getAudioKiloBitrate">
|
||||
<div class="location">in <a href="../../../FFMpeg/Format/Audio/DefaultAudio.html#method_getAudioKiloBitrate"><abbr title="FFMpeg\Format\Audio\DefaultAudio">DefaultAudio</abbr></a> at line 74</div>
|
||||
<code> public integer
|
||||
<strong>getAudioKiloBitrate</strong>()</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Gets the audio kiloBitrate value.</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td>integer</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_setAudioKiloBitrate">
|
||||
<div class="location">in <a href="../../../FFMpeg/Format/Audio/DefaultAudio.html#method_setAudioKiloBitrate"><abbr title="FFMpeg\Format\Audio\DefaultAudio">DefaultAudio</abbr></a> at line 85</div>
|
||||
<code> public
|
||||
<strong>setAudioKiloBitrate</strong>(integer $kiloBitrate)</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Sets the kiloBitrate value.</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
<h4>Parameters</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td>integer</td>
|
||||
<td>$kiloBitrate</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
<h4>Exceptions</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="http://php.net/InvalidArgumentException"><abbr title="InvalidArgumentException">InvalidArgumentException</abbr></a></td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_getAudioChannels">
|
||||
<div class="location">in <a href="../../../FFMpeg/Format/Audio/DefaultAudio.html#method_getAudioChannels"><abbr title="FFMpeg\Format\Audio\DefaultAudio">DefaultAudio</abbr></a> at line 99</div>
|
||||
<code> public integer
|
||||
<strong>getAudioChannels</strong>()</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Gets the audio channels value.</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td>integer</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_setAudioChannels">
|
||||
<div class="location">in <a href="../../../FFMpeg/Format/Audio/DefaultAudio.html#method_setAudioChannels"><abbr title="FFMpeg\Format\Audio\DefaultAudio">DefaultAudio</abbr></a> at line 110</div>
|
||||
<code> public
|
||||
<strong>setAudioChannels</strong>(integer $channels)</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Sets the channels value.</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
<h4>Parameters</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td>integer</td>
|
||||
<td>$channels</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
<h4>Exceptions</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="http://php.net/InvalidArgumentException"><abbr title="InvalidArgumentException">InvalidArgumentException</abbr></a></td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_createProgressListener">
|
||||
<div class="location">in <a href="../../../FFMpeg/Format/Audio/DefaultAudio.html#method_createProgressListener"><abbr title="FFMpeg\Format\Audio\DefaultAudio">DefaultAudio</abbr></a> at line 124</div>
|
||||
<code> public array
|
||||
<strong>createProgressListener</strong>(<a href="../../../FFMpeg/Media/MediaTypeInterface.html"><abbr title="FFMpeg\Media\MediaTypeInterface">MediaTypeInterface</abbr></a> $media, <a href="../../../FFMpeg/FFProbe.html"><abbr title="FFMpeg\FFProbe">FFProbe</abbr></a> $ffprobe, Integer $pass, Integer $total)</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Creates the progress listener.</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
<h4>Parameters</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="../../../FFMpeg/Media/MediaTypeInterface.html"><abbr title="FFMpeg\Media\MediaTypeInterface">MediaTypeInterface</abbr></a></td>
|
||||
<td>$media</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><a href="../../../FFMpeg/FFProbe.html"><abbr title="FFMpeg\FFProbe">FFProbe</abbr></a></td>
|
||||
<td>$ffprobe</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Integer</td>
|
||||
<td>$pass</td>
|
||||
<td>The current pas snumber</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Integer</td>
|
||||
<td>$total</td>
|
||||
<td>The total pass number</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td>array</td>
|
||||
<td>An array of listeners</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_getPasses">
|
||||
<div class="location">in <a href="../../../FFMpeg/Format/Audio/DefaultAudio.html#method_getPasses"><abbr title="FFMpeg\Format\Audio\DefaultAudio">DefaultAudio</abbr></a> at line 138</div>
|
||||
<code> public string
|
||||
<strong>getPasses</strong>()</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Returns the number of passes.</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td>string</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method___construct">
|
||||
<div class="location">at line 19</div>
|
||||
<code> public
|
||||
<strong>__construct</strong>()</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>
|
||||
</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_getAvailableAudioCodecs">
|
||||
<div class="location">at line 27</div>
|
||||
<code> public array
|
||||
<strong>getAvailableAudioCodecs</strong>()</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Returns the list of available audio codecs for this format.</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td>array</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
</div>
|
||||
<div id="footer">
|
||||
Generated by <a href="http://sami.sensiolabs.org/" target="_top">Sami, the API Documentation Generator</a>.
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
|
|
@ -1,430 +0,0 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<meta name="robots" content="index, follow, all" />
|
||||
<title>FFMpeg\Format\Audio\DefaultAudio | PHP-FFMpeg API</title>
|
||||
<link rel="stylesheet" type="text/css" href="../../../stylesheet.css">
|
||||
</head>
|
||||
<body id="class">
|
||||
<div class="header">
|
||||
<ul>
|
||||
<li><a href="../../../classes.html">Classes</a></li>
|
||||
<li><a href="../../../namespaces.html">Namespaces</a></li>
|
||||
<li><a href="../../../interfaces.html">Interfaces</a></li>
|
||||
<li><a href="../../../traits.html">Traits</a></li>
|
||||
<li><a href="../../../doc-index.html">Index</a></li>
|
||||
|
||||
</ul>
|
||||
|
||||
<div id="title">PHP-FFMpeg API</div>
|
||||
|
||||
<div class="type">Class</div>
|
||||
<h1><a href="../../../FFMpeg/Format/Audio.html">FFMpeg\Format\Audio</a>\DefaultAudio</h1>
|
||||
</div>
|
||||
<div class="content">
|
||||
<p>abstract class
|
||||
<strong>DefaultAudio</strong> extends <abbr title="Evenement\EventEmitter">EventEmitter</abbr> implements
|
||||
<a href="../../../FFMpeg/Format/AudioInterface.html"><abbr title="FFMpeg\Format\AudioInterface">AudioInterface</abbr></a>, <a href="../../../FFMpeg/Format/ProgressableInterface.html"><abbr title="FFMpeg\Format\ProgressableInterface">ProgressableInterface</abbr></a></p>
|
||||
|
||||
|
||||
|
||||
|
||||
<h2>Methods</h2>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td class="type">
|
||||
<abbr title="FFMpeg\Format\array()">array()</abbr>
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_getExtraParams">getExtraParams</a>()
|
||||
<p>Returns an array of extra parameters to add to ffmpeg commandline.</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
string
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_getAudioCodec">getAudioCodec</a>()
|
||||
<p>Returns the audio codec.</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_setAudioCodec">setAudioCodec</a>(string $audioCodec)
|
||||
<p>Sets the audio codec, Should be in the available ones, otherwise an exception is thrown.</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
integer
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_getAudioKiloBitrate">getAudioKiloBitrate</a>()
|
||||
<p>Gets the audio kiloBitrate value.</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_setAudioKiloBitrate">setAudioKiloBitrate</a>(integer $kiloBitrate)
|
||||
<p>Sets the kiloBitrate value.</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
integer
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_getAudioChannels">getAudioChannels</a>()
|
||||
<p>Gets the audio channels value.</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_setAudioChannels">setAudioChannels</a>(integer $channels)
|
||||
<p>Sets the channels value.</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
array
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_createProgressListener">createProgressListener</a>(<a href="../../../FFMpeg/Media/MediaTypeInterface.html"><abbr title="FFMpeg\Media\MediaTypeInterface">MediaTypeInterface</abbr></a> $media, <a href="../../../FFMpeg/FFProbe.html"><abbr title="FFMpeg\FFProbe">FFProbe</abbr></a> $ffprobe, Integer $pass, Integer $total)
|
||||
<p>Creates the progress listener.</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
string
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_getPasses">getPasses</a>()
|
||||
<p>Returns the number of passes.</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h2>Details</h2>
|
||||
|
||||
<h3 id="method_getExtraParams">
|
||||
<div class="location">at line 36</div>
|
||||
<code> public <abbr title="FFMpeg\Format\array()">array()</abbr>
|
||||
<strong>getExtraParams</strong>()</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Returns an array of extra parameters to add to ffmpeg commandline.</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><abbr title="FFMpeg\Format\array()">array()</abbr></td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_getAudioCodec">
|
||||
<div class="location">at line 44</div>
|
||||
<code> public string
|
||||
<strong>getAudioCodec</strong>()</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Returns the audio codec.</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td>string</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_setAudioCodec">
|
||||
<div class="location">at line 57</div>
|
||||
<code> public
|
||||
<strong>setAudioCodec</strong>(string $audioCodec)</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Sets the audio codec, Should be in the available ones, otherwise an exception is thrown.</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
<h4>Parameters</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td>string</td>
|
||||
<td>$audioCodec</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
<h4>Exceptions</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="http://php.net/InvalidArgumentException"><abbr title="InvalidArgumentException">InvalidArgumentException</abbr></a></td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_getAudioKiloBitrate">
|
||||
<div class="location">at line 74</div>
|
||||
<code> public integer
|
||||
<strong>getAudioKiloBitrate</strong>()</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Gets the audio kiloBitrate value.</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td>integer</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_setAudioKiloBitrate">
|
||||
<div class="location">at line 85</div>
|
||||
<code> public
|
||||
<strong>setAudioKiloBitrate</strong>(integer $kiloBitrate)</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Sets the kiloBitrate value.</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
<h4>Parameters</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td>integer</td>
|
||||
<td>$kiloBitrate</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
<h4>Exceptions</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="http://php.net/InvalidArgumentException"><abbr title="InvalidArgumentException">InvalidArgumentException</abbr></a></td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_getAudioChannels">
|
||||
<div class="location">at line 99</div>
|
||||
<code> public integer
|
||||
<strong>getAudioChannels</strong>()</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Gets the audio channels value.</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td>integer</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_setAudioChannels">
|
||||
<div class="location">at line 110</div>
|
||||
<code> public
|
||||
<strong>setAudioChannels</strong>(integer $channels)</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Sets the channels value.</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
<h4>Parameters</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td>integer</td>
|
||||
<td>$channels</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
<h4>Exceptions</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="http://php.net/InvalidArgumentException"><abbr title="InvalidArgumentException">InvalidArgumentException</abbr></a></td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_createProgressListener">
|
||||
<div class="location">at line 124</div>
|
||||
<code> public array
|
||||
<strong>createProgressListener</strong>(<a href="../../../FFMpeg/Media/MediaTypeInterface.html"><abbr title="FFMpeg\Media\MediaTypeInterface">MediaTypeInterface</abbr></a> $media, <a href="../../../FFMpeg/FFProbe.html"><abbr title="FFMpeg\FFProbe">FFProbe</abbr></a> $ffprobe, Integer $pass, Integer $total)</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Creates the progress listener.</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
<h4>Parameters</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="../../../FFMpeg/Media/MediaTypeInterface.html"><abbr title="FFMpeg\Media\MediaTypeInterface">MediaTypeInterface</abbr></a></td>
|
||||
<td>$media</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><a href="../../../FFMpeg/FFProbe.html"><abbr title="FFMpeg\FFProbe">FFProbe</abbr></a></td>
|
||||
<td>$ffprobe</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Integer</td>
|
||||
<td>$pass</td>
|
||||
<td>The current pas snumber</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Integer</td>
|
||||
<td>$total</td>
|
||||
<td>The total pass number</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td>array</td>
|
||||
<td>An array of listeners</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_getPasses">
|
||||
<div class="location">at line 138</div>
|
||||
<code> public string
|
||||
<strong>getPasses</strong>()</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Returns the number of passes.</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td>string</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
</div>
|
||||
<div id="footer">
|
||||
Generated by <a href="http://sami.sensiolabs.org/" target="_top">Sami, the API Documentation Generator</a>.
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
|
|
@ -1,498 +0,0 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<meta name="robots" content="index, follow, all" />
|
||||
<title>FFMpeg\Format\Audio\Flac | PHP-FFMpeg API</title>
|
||||
<link rel="stylesheet" type="text/css" href="../../../stylesheet.css">
|
||||
</head>
|
||||
<body id="class">
|
||||
<div class="header">
|
||||
<ul>
|
||||
<li><a href="../../../classes.html">Classes</a></li>
|
||||
<li><a href="../../../namespaces.html">Namespaces</a></li>
|
||||
<li><a href="../../../interfaces.html">Interfaces</a></li>
|
||||
<li><a href="../../../traits.html">Traits</a></li>
|
||||
<li><a href="../../../doc-index.html">Index</a></li>
|
||||
|
||||
</ul>
|
||||
|
||||
<div id="title">PHP-FFMpeg API</div>
|
||||
|
||||
<div class="type">Class</div>
|
||||
<h1><a href="../../../FFMpeg/Format/Audio.html">FFMpeg\Format\Audio</a>\Flac</h1>
|
||||
</div>
|
||||
<div class="content">
|
||||
<p> class
|
||||
<strong>Flac</strong> extends <a href="../../../FFMpeg/Format/Audio/DefaultAudio.html"><abbr title="FFMpeg\Format\Audio\DefaultAudio">DefaultAudio</abbr></a></p>
|
||||
|
||||
<div class="description">
|
||||
<p>The Flac audio format</p>
|
||||
<p>
|
||||
</p>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<h2>Methods</h2>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td class="type">
|
||||
<abbr title="FFMpeg\Format\array()">array()</abbr>
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_getExtraParams">getExtraParams</a>()
|
||||
<p>Returns an array of extra parameters to add to ffmpeg commandline.</p>
|
||||
</td>
|
||||
<td><small>from <a href="../../../FFMpeg/Format/Audio/DefaultAudio.html#method_getExtraParams"><abbr title="FFMpeg\Format\Audio\DefaultAudio">DefaultAudio</abbr></a></small></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
string
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_getAudioCodec">getAudioCodec</a>()
|
||||
<p>Returns the audio codec.</p>
|
||||
</td>
|
||||
<td><small>from <a href="../../../FFMpeg/Format/Audio/DefaultAudio.html#method_getAudioCodec"><abbr title="FFMpeg\Format\Audio\DefaultAudio">DefaultAudio</abbr></a></small></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_setAudioCodec">setAudioCodec</a>(string $audioCodec)
|
||||
<p>Sets the audio codec, Should be in the available ones, otherwise an exception is thrown.</p>
|
||||
</td>
|
||||
<td><small>from <a href="../../../FFMpeg/Format/Audio/DefaultAudio.html#method_setAudioCodec"><abbr title="FFMpeg\Format\Audio\DefaultAudio">DefaultAudio</abbr></a></small></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
integer
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_getAudioKiloBitrate">getAudioKiloBitrate</a>()
|
||||
<p>Gets the audio kiloBitrate value.</p>
|
||||
</td>
|
||||
<td><small>from <a href="../../../FFMpeg/Format/Audio/DefaultAudio.html#method_getAudioKiloBitrate"><abbr title="FFMpeg\Format\Audio\DefaultAudio">DefaultAudio</abbr></a></small></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_setAudioKiloBitrate">setAudioKiloBitrate</a>(integer $kiloBitrate)
|
||||
<p>Sets the kiloBitrate value.</p>
|
||||
</td>
|
||||
<td><small>from <a href="../../../FFMpeg/Format/Audio/DefaultAudio.html#method_setAudioKiloBitrate"><abbr title="FFMpeg\Format\Audio\DefaultAudio">DefaultAudio</abbr></a></small></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
integer
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_getAudioChannels">getAudioChannels</a>()
|
||||
<p>Gets the audio channels value.</p>
|
||||
</td>
|
||||
<td><small>from <a href="../../../FFMpeg/Format/Audio/DefaultAudio.html#method_getAudioChannels"><abbr title="FFMpeg\Format\Audio\DefaultAudio">DefaultAudio</abbr></a></small></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_setAudioChannels">setAudioChannels</a>(integer $channels)
|
||||
<p>Sets the channels value.</p>
|
||||
</td>
|
||||
<td><small>from <a href="../../../FFMpeg/Format/Audio/DefaultAudio.html#method_setAudioChannels"><abbr title="FFMpeg\Format\Audio\DefaultAudio">DefaultAudio</abbr></a></small></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
array
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_createProgressListener">createProgressListener</a>(<a href="../../../FFMpeg/Media/MediaTypeInterface.html"><abbr title="FFMpeg\Media\MediaTypeInterface">MediaTypeInterface</abbr></a> $media, <a href="../../../FFMpeg/FFProbe.html"><abbr title="FFMpeg\FFProbe">FFProbe</abbr></a> $ffprobe, Integer $pass, Integer $total)
|
||||
<p>Creates the progress listener.</p>
|
||||
</td>
|
||||
<td><small>from <a href="../../../FFMpeg/Format/Audio/DefaultAudio.html#method_createProgressListener"><abbr title="FFMpeg\Format\Audio\DefaultAudio">DefaultAudio</abbr></a></small></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
string
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_getPasses">getPasses</a>()
|
||||
<p>Returns the number of passes.</p>
|
||||
</td>
|
||||
<td><small>from <a href="../../../FFMpeg/Format/Audio/DefaultAudio.html#method_getPasses"><abbr title="FFMpeg\Format\Audio\DefaultAudio">DefaultAudio</abbr></a></small></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method___construct">__construct</a>()
|
||||
<p>
|
||||
</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
array
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_getAvailableAudioCodecs">getAvailableAudioCodecs</a>()
|
||||
<p>Returns the list of available audio codecs for this format.</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h2>Details</h2>
|
||||
|
||||
<h3 id="method_getExtraParams">
|
||||
<div class="location">in <a href="../../../FFMpeg/Format/Audio/DefaultAudio.html#method_getExtraParams"><abbr title="FFMpeg\Format\Audio\DefaultAudio">DefaultAudio</abbr></a> at line 36</div>
|
||||
<code> public <abbr title="FFMpeg\Format\array()">array()</abbr>
|
||||
<strong>getExtraParams</strong>()</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Returns an array of extra parameters to add to ffmpeg commandline.</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><abbr title="FFMpeg\Format\array()">array()</abbr></td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_getAudioCodec">
|
||||
<div class="location">in <a href="../../../FFMpeg/Format/Audio/DefaultAudio.html#method_getAudioCodec"><abbr title="FFMpeg\Format\Audio\DefaultAudio">DefaultAudio</abbr></a> at line 44</div>
|
||||
<code> public string
|
||||
<strong>getAudioCodec</strong>()</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Returns the audio codec.</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td>string</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_setAudioCodec">
|
||||
<div class="location">in <a href="../../../FFMpeg/Format/Audio/DefaultAudio.html#method_setAudioCodec"><abbr title="FFMpeg\Format\Audio\DefaultAudio">DefaultAudio</abbr></a> at line 57</div>
|
||||
<code> public
|
||||
<strong>setAudioCodec</strong>(string $audioCodec)</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Sets the audio codec, Should be in the available ones, otherwise an exception is thrown.</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
<h4>Parameters</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td>string</td>
|
||||
<td>$audioCodec</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
<h4>Exceptions</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="http://php.net/InvalidArgumentException"><abbr title="InvalidArgumentException">InvalidArgumentException</abbr></a></td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_getAudioKiloBitrate">
|
||||
<div class="location">in <a href="../../../FFMpeg/Format/Audio/DefaultAudio.html#method_getAudioKiloBitrate"><abbr title="FFMpeg\Format\Audio\DefaultAudio">DefaultAudio</abbr></a> at line 74</div>
|
||||
<code> public integer
|
||||
<strong>getAudioKiloBitrate</strong>()</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Gets the audio kiloBitrate value.</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td>integer</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_setAudioKiloBitrate">
|
||||
<div class="location">in <a href="../../../FFMpeg/Format/Audio/DefaultAudio.html#method_setAudioKiloBitrate"><abbr title="FFMpeg\Format\Audio\DefaultAudio">DefaultAudio</abbr></a> at line 85</div>
|
||||
<code> public
|
||||
<strong>setAudioKiloBitrate</strong>(integer $kiloBitrate)</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Sets the kiloBitrate value.</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
<h4>Parameters</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td>integer</td>
|
||||
<td>$kiloBitrate</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
<h4>Exceptions</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="http://php.net/InvalidArgumentException"><abbr title="InvalidArgumentException">InvalidArgumentException</abbr></a></td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_getAudioChannels">
|
||||
<div class="location">in <a href="../../../FFMpeg/Format/Audio/DefaultAudio.html#method_getAudioChannels"><abbr title="FFMpeg\Format\Audio\DefaultAudio">DefaultAudio</abbr></a> at line 99</div>
|
||||
<code> public integer
|
||||
<strong>getAudioChannels</strong>()</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Gets the audio channels value.</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td>integer</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_setAudioChannels">
|
||||
<div class="location">in <a href="../../../FFMpeg/Format/Audio/DefaultAudio.html#method_setAudioChannels"><abbr title="FFMpeg\Format\Audio\DefaultAudio">DefaultAudio</abbr></a> at line 110</div>
|
||||
<code> public
|
||||
<strong>setAudioChannels</strong>(integer $channels)</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Sets the channels value.</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
<h4>Parameters</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td>integer</td>
|
||||
<td>$channels</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
<h4>Exceptions</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="http://php.net/InvalidArgumentException"><abbr title="InvalidArgumentException">InvalidArgumentException</abbr></a></td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_createProgressListener">
|
||||
<div class="location">in <a href="../../../FFMpeg/Format/Audio/DefaultAudio.html#method_createProgressListener"><abbr title="FFMpeg\Format\Audio\DefaultAudio">DefaultAudio</abbr></a> at line 124</div>
|
||||
<code> public array
|
||||
<strong>createProgressListener</strong>(<a href="../../../FFMpeg/Media/MediaTypeInterface.html"><abbr title="FFMpeg\Media\MediaTypeInterface">MediaTypeInterface</abbr></a> $media, <a href="../../../FFMpeg/FFProbe.html"><abbr title="FFMpeg\FFProbe">FFProbe</abbr></a> $ffprobe, Integer $pass, Integer $total)</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Creates the progress listener.</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
<h4>Parameters</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="../../../FFMpeg/Media/MediaTypeInterface.html"><abbr title="FFMpeg\Media\MediaTypeInterface">MediaTypeInterface</abbr></a></td>
|
||||
<td>$media</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><a href="../../../FFMpeg/FFProbe.html"><abbr title="FFMpeg\FFProbe">FFProbe</abbr></a></td>
|
||||
<td>$ffprobe</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Integer</td>
|
||||
<td>$pass</td>
|
||||
<td>The current pas snumber</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Integer</td>
|
||||
<td>$total</td>
|
||||
<td>The total pass number</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td>array</td>
|
||||
<td>An array of listeners</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_getPasses">
|
||||
<div class="location">in <a href="../../../FFMpeg/Format/Audio/DefaultAudio.html#method_getPasses"><abbr title="FFMpeg\Format\Audio\DefaultAudio">DefaultAudio</abbr></a> at line 138</div>
|
||||
<code> public string
|
||||
<strong>getPasses</strong>()</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Returns the number of passes.</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td>string</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method___construct">
|
||||
<div class="location">at line 19</div>
|
||||
<code> public
|
||||
<strong>__construct</strong>()</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>
|
||||
</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_getAvailableAudioCodecs">
|
||||
<div class="location">at line 27</div>
|
||||
<code> public array
|
||||
<strong>getAvailableAudioCodecs</strong>()</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Returns the list of available audio codecs for this format.</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td>array</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
</div>
|
||||
<div id="footer">
|
||||
Generated by <a href="http://sami.sensiolabs.org/" target="_top">Sami, the API Documentation Generator</a>.
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
|
|
@ -1,498 +0,0 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<meta name="robots" content="index, follow, all" />
|
||||
<title>FFMpeg\Format\Audio\Mp3 | PHP-FFMpeg API</title>
|
||||
<link rel="stylesheet" type="text/css" href="../../../stylesheet.css">
|
||||
</head>
|
||||
<body id="class">
|
||||
<div class="header">
|
||||
<ul>
|
||||
<li><a href="../../../classes.html">Classes</a></li>
|
||||
<li><a href="../../../namespaces.html">Namespaces</a></li>
|
||||
<li><a href="../../../interfaces.html">Interfaces</a></li>
|
||||
<li><a href="../../../traits.html">Traits</a></li>
|
||||
<li><a href="../../../doc-index.html">Index</a></li>
|
||||
|
||||
</ul>
|
||||
|
||||
<div id="title">PHP-FFMpeg API</div>
|
||||
|
||||
<div class="type">Class</div>
|
||||
<h1><a href="../../../FFMpeg/Format/Audio.html">FFMpeg\Format\Audio</a>\Mp3</h1>
|
||||
</div>
|
||||
<div class="content">
|
||||
<p> class
|
||||
<strong>Mp3</strong> extends <a href="../../../FFMpeg/Format/Audio/DefaultAudio.html"><abbr title="FFMpeg\Format\Audio\DefaultAudio">DefaultAudio</abbr></a></p>
|
||||
|
||||
<div class="description">
|
||||
<p>The MP3 audio format</p>
|
||||
<p>
|
||||
</p>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<h2>Methods</h2>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td class="type">
|
||||
<abbr title="FFMpeg\Format\array()">array()</abbr>
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_getExtraParams">getExtraParams</a>()
|
||||
<p>Returns an array of extra parameters to add to ffmpeg commandline.</p>
|
||||
</td>
|
||||
<td><small>from <a href="../../../FFMpeg/Format/Audio/DefaultAudio.html#method_getExtraParams"><abbr title="FFMpeg\Format\Audio\DefaultAudio">DefaultAudio</abbr></a></small></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
string
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_getAudioCodec">getAudioCodec</a>()
|
||||
<p>Returns the audio codec.</p>
|
||||
</td>
|
||||
<td><small>from <a href="../../../FFMpeg/Format/Audio/DefaultAudio.html#method_getAudioCodec"><abbr title="FFMpeg\Format\Audio\DefaultAudio">DefaultAudio</abbr></a></small></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_setAudioCodec">setAudioCodec</a>(string $audioCodec)
|
||||
<p>Sets the audio codec, Should be in the available ones, otherwise an exception is thrown.</p>
|
||||
</td>
|
||||
<td><small>from <a href="../../../FFMpeg/Format/Audio/DefaultAudio.html#method_setAudioCodec"><abbr title="FFMpeg\Format\Audio\DefaultAudio">DefaultAudio</abbr></a></small></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
integer
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_getAudioKiloBitrate">getAudioKiloBitrate</a>()
|
||||
<p>Gets the audio kiloBitrate value.</p>
|
||||
</td>
|
||||
<td><small>from <a href="../../../FFMpeg/Format/Audio/DefaultAudio.html#method_getAudioKiloBitrate"><abbr title="FFMpeg\Format\Audio\DefaultAudio">DefaultAudio</abbr></a></small></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_setAudioKiloBitrate">setAudioKiloBitrate</a>(integer $kiloBitrate)
|
||||
<p>Sets the kiloBitrate value.</p>
|
||||
</td>
|
||||
<td><small>from <a href="../../../FFMpeg/Format/Audio/DefaultAudio.html#method_setAudioKiloBitrate"><abbr title="FFMpeg\Format\Audio\DefaultAudio">DefaultAudio</abbr></a></small></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
integer
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_getAudioChannels">getAudioChannels</a>()
|
||||
<p>Gets the audio channels value.</p>
|
||||
</td>
|
||||
<td><small>from <a href="../../../FFMpeg/Format/Audio/DefaultAudio.html#method_getAudioChannels"><abbr title="FFMpeg\Format\Audio\DefaultAudio">DefaultAudio</abbr></a></small></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_setAudioChannels">setAudioChannels</a>(integer $channels)
|
||||
<p>Sets the channels value.</p>
|
||||
</td>
|
||||
<td><small>from <a href="../../../FFMpeg/Format/Audio/DefaultAudio.html#method_setAudioChannels"><abbr title="FFMpeg\Format\Audio\DefaultAudio">DefaultAudio</abbr></a></small></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
array
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_createProgressListener">createProgressListener</a>(<a href="../../../FFMpeg/Media/MediaTypeInterface.html"><abbr title="FFMpeg\Media\MediaTypeInterface">MediaTypeInterface</abbr></a> $media, <a href="../../../FFMpeg/FFProbe.html"><abbr title="FFMpeg\FFProbe">FFProbe</abbr></a> $ffprobe, Integer $pass, Integer $total)
|
||||
<p>Creates the progress listener.</p>
|
||||
</td>
|
||||
<td><small>from <a href="../../../FFMpeg/Format/Audio/DefaultAudio.html#method_createProgressListener"><abbr title="FFMpeg\Format\Audio\DefaultAudio">DefaultAudio</abbr></a></small></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
string
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_getPasses">getPasses</a>()
|
||||
<p>Returns the number of passes.</p>
|
||||
</td>
|
||||
<td><small>from <a href="../../../FFMpeg/Format/Audio/DefaultAudio.html#method_getPasses"><abbr title="FFMpeg\Format\Audio\DefaultAudio">DefaultAudio</abbr></a></small></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method___construct">__construct</a>()
|
||||
<p>
|
||||
</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
array
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_getAvailableAudioCodecs">getAvailableAudioCodecs</a>()
|
||||
<p>Returns the list of available audio codecs for this format.</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h2>Details</h2>
|
||||
|
||||
<h3 id="method_getExtraParams">
|
||||
<div class="location">in <a href="../../../FFMpeg/Format/Audio/DefaultAudio.html#method_getExtraParams"><abbr title="FFMpeg\Format\Audio\DefaultAudio">DefaultAudio</abbr></a> at line 36</div>
|
||||
<code> public <abbr title="FFMpeg\Format\array()">array()</abbr>
|
||||
<strong>getExtraParams</strong>()</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Returns an array of extra parameters to add to ffmpeg commandline.</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><abbr title="FFMpeg\Format\array()">array()</abbr></td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_getAudioCodec">
|
||||
<div class="location">in <a href="../../../FFMpeg/Format/Audio/DefaultAudio.html#method_getAudioCodec"><abbr title="FFMpeg\Format\Audio\DefaultAudio">DefaultAudio</abbr></a> at line 44</div>
|
||||
<code> public string
|
||||
<strong>getAudioCodec</strong>()</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Returns the audio codec.</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td>string</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_setAudioCodec">
|
||||
<div class="location">in <a href="../../../FFMpeg/Format/Audio/DefaultAudio.html#method_setAudioCodec"><abbr title="FFMpeg\Format\Audio\DefaultAudio">DefaultAudio</abbr></a> at line 57</div>
|
||||
<code> public
|
||||
<strong>setAudioCodec</strong>(string $audioCodec)</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Sets the audio codec, Should be in the available ones, otherwise an exception is thrown.</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
<h4>Parameters</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td>string</td>
|
||||
<td>$audioCodec</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
<h4>Exceptions</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="http://php.net/InvalidArgumentException"><abbr title="InvalidArgumentException">InvalidArgumentException</abbr></a></td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_getAudioKiloBitrate">
|
||||
<div class="location">in <a href="../../../FFMpeg/Format/Audio/DefaultAudio.html#method_getAudioKiloBitrate"><abbr title="FFMpeg\Format\Audio\DefaultAudio">DefaultAudio</abbr></a> at line 74</div>
|
||||
<code> public integer
|
||||
<strong>getAudioKiloBitrate</strong>()</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Gets the audio kiloBitrate value.</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td>integer</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_setAudioKiloBitrate">
|
||||
<div class="location">in <a href="../../../FFMpeg/Format/Audio/DefaultAudio.html#method_setAudioKiloBitrate"><abbr title="FFMpeg\Format\Audio\DefaultAudio">DefaultAudio</abbr></a> at line 85</div>
|
||||
<code> public
|
||||
<strong>setAudioKiloBitrate</strong>(integer $kiloBitrate)</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Sets the kiloBitrate value.</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
<h4>Parameters</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td>integer</td>
|
||||
<td>$kiloBitrate</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
<h4>Exceptions</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="http://php.net/InvalidArgumentException"><abbr title="InvalidArgumentException">InvalidArgumentException</abbr></a></td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_getAudioChannels">
|
||||
<div class="location">in <a href="../../../FFMpeg/Format/Audio/DefaultAudio.html#method_getAudioChannels"><abbr title="FFMpeg\Format\Audio\DefaultAudio">DefaultAudio</abbr></a> at line 99</div>
|
||||
<code> public integer
|
||||
<strong>getAudioChannels</strong>()</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Gets the audio channels value.</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td>integer</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_setAudioChannels">
|
||||
<div class="location">in <a href="../../../FFMpeg/Format/Audio/DefaultAudio.html#method_setAudioChannels"><abbr title="FFMpeg\Format\Audio\DefaultAudio">DefaultAudio</abbr></a> at line 110</div>
|
||||
<code> public
|
||||
<strong>setAudioChannels</strong>(integer $channels)</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Sets the channels value.</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
<h4>Parameters</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td>integer</td>
|
||||
<td>$channels</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
<h4>Exceptions</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="http://php.net/InvalidArgumentException"><abbr title="InvalidArgumentException">InvalidArgumentException</abbr></a></td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_createProgressListener">
|
||||
<div class="location">in <a href="../../../FFMpeg/Format/Audio/DefaultAudio.html#method_createProgressListener"><abbr title="FFMpeg\Format\Audio\DefaultAudio">DefaultAudio</abbr></a> at line 124</div>
|
||||
<code> public array
|
||||
<strong>createProgressListener</strong>(<a href="../../../FFMpeg/Media/MediaTypeInterface.html"><abbr title="FFMpeg\Media\MediaTypeInterface">MediaTypeInterface</abbr></a> $media, <a href="../../../FFMpeg/FFProbe.html"><abbr title="FFMpeg\FFProbe">FFProbe</abbr></a> $ffprobe, Integer $pass, Integer $total)</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Creates the progress listener.</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
<h4>Parameters</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="../../../FFMpeg/Media/MediaTypeInterface.html"><abbr title="FFMpeg\Media\MediaTypeInterface">MediaTypeInterface</abbr></a></td>
|
||||
<td>$media</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><a href="../../../FFMpeg/FFProbe.html"><abbr title="FFMpeg\FFProbe">FFProbe</abbr></a></td>
|
||||
<td>$ffprobe</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Integer</td>
|
||||
<td>$pass</td>
|
||||
<td>The current pas snumber</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Integer</td>
|
||||
<td>$total</td>
|
||||
<td>The total pass number</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td>array</td>
|
||||
<td>An array of listeners</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_getPasses">
|
||||
<div class="location">in <a href="../../../FFMpeg/Format/Audio/DefaultAudio.html#method_getPasses"><abbr title="FFMpeg\Format\Audio\DefaultAudio">DefaultAudio</abbr></a> at line 138</div>
|
||||
<code> public string
|
||||
<strong>getPasses</strong>()</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Returns the number of passes.</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td>string</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method___construct">
|
||||
<div class="location">at line 19</div>
|
||||
<code> public
|
||||
<strong>__construct</strong>()</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>
|
||||
</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_getAvailableAudioCodecs">
|
||||
<div class="location">at line 27</div>
|
||||
<code> public array
|
||||
<strong>getAvailableAudioCodecs</strong>()</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Returns the list of available audio codecs for this format.</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td>array</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
</div>
|
||||
<div id="footer">
|
||||
Generated by <a href="http://sami.sensiolabs.org/" target="_top">Sami, the API Documentation Generator</a>.
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
|
|
@ -1,498 +0,0 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<meta name="robots" content="index, follow, all" />
|
||||
<title>FFMpeg\Format\Audio\Vorbis | PHP-FFMpeg API</title>
|
||||
<link rel="stylesheet" type="text/css" href="../../../stylesheet.css">
|
||||
</head>
|
||||
<body id="class">
|
||||
<div class="header">
|
||||
<ul>
|
||||
<li><a href="../../../classes.html">Classes</a></li>
|
||||
<li><a href="../../../namespaces.html">Namespaces</a></li>
|
||||
<li><a href="../../../interfaces.html">Interfaces</a></li>
|
||||
<li><a href="../../../traits.html">Traits</a></li>
|
||||
<li><a href="../../../doc-index.html">Index</a></li>
|
||||
|
||||
</ul>
|
||||
|
||||
<div id="title">PHP-FFMpeg API</div>
|
||||
|
||||
<div class="type">Class</div>
|
||||
<h1><a href="../../../FFMpeg/Format/Audio.html">FFMpeg\Format\Audio</a>\Vorbis</h1>
|
||||
</div>
|
||||
<div class="content">
|
||||
<p> class
|
||||
<strong>Vorbis</strong> extends <a href="../../../FFMpeg/Format/Audio/DefaultAudio.html"><abbr title="FFMpeg\Format\Audio\DefaultAudio">DefaultAudio</abbr></a></p>
|
||||
|
||||
<div class="description">
|
||||
<p>The Vorbis audio format</p>
|
||||
<p>
|
||||
</p>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<h2>Methods</h2>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td class="type">
|
||||
<abbr title="FFMpeg\Format\array()">array()</abbr>
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_getExtraParams">getExtraParams</a>()
|
||||
<p>Returns an array of extra parameters to add to ffmpeg commandline.</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
string
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_getAudioCodec">getAudioCodec</a>()
|
||||
<p>Returns the audio codec.</p>
|
||||
</td>
|
||||
<td><small>from <a href="../../../FFMpeg/Format/Audio/DefaultAudio.html#method_getAudioCodec"><abbr title="FFMpeg\Format\Audio\DefaultAudio">DefaultAudio</abbr></a></small></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_setAudioCodec">setAudioCodec</a>(string $audioCodec)
|
||||
<p>Sets the audio codec, Should be in the available ones, otherwise an exception is thrown.</p>
|
||||
</td>
|
||||
<td><small>from <a href="../../../FFMpeg/Format/Audio/DefaultAudio.html#method_setAudioCodec"><abbr title="FFMpeg\Format\Audio\DefaultAudio">DefaultAudio</abbr></a></small></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
integer
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_getAudioKiloBitrate">getAudioKiloBitrate</a>()
|
||||
<p>Gets the audio kiloBitrate value.</p>
|
||||
</td>
|
||||
<td><small>from <a href="../../../FFMpeg/Format/Audio/DefaultAudio.html#method_getAudioKiloBitrate"><abbr title="FFMpeg\Format\Audio\DefaultAudio">DefaultAudio</abbr></a></small></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_setAudioKiloBitrate">setAudioKiloBitrate</a>(integer $kiloBitrate)
|
||||
<p>Sets the kiloBitrate value.</p>
|
||||
</td>
|
||||
<td><small>from <a href="../../../FFMpeg/Format/Audio/DefaultAudio.html#method_setAudioKiloBitrate"><abbr title="FFMpeg\Format\Audio\DefaultAudio">DefaultAudio</abbr></a></small></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
integer
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_getAudioChannels">getAudioChannels</a>()
|
||||
<p>Gets the audio channels value.</p>
|
||||
</td>
|
||||
<td><small>from <a href="../../../FFMpeg/Format/Audio/DefaultAudio.html#method_getAudioChannels"><abbr title="FFMpeg\Format\Audio\DefaultAudio">DefaultAudio</abbr></a></small></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_setAudioChannels">setAudioChannels</a>(integer $channels)
|
||||
<p>Sets the channels value.</p>
|
||||
</td>
|
||||
<td><small>from <a href="../../../FFMpeg/Format/Audio/DefaultAudio.html#method_setAudioChannels"><abbr title="FFMpeg\Format\Audio\DefaultAudio">DefaultAudio</abbr></a></small></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
array
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_createProgressListener">createProgressListener</a>(<a href="../../../FFMpeg/Media/MediaTypeInterface.html"><abbr title="FFMpeg\Media\MediaTypeInterface">MediaTypeInterface</abbr></a> $media, <a href="../../../FFMpeg/FFProbe.html"><abbr title="FFMpeg\FFProbe">FFProbe</abbr></a> $ffprobe, Integer $pass, Integer $total)
|
||||
<p>Creates the progress listener.</p>
|
||||
</td>
|
||||
<td><small>from <a href="../../../FFMpeg/Format/Audio/DefaultAudio.html#method_createProgressListener"><abbr title="FFMpeg\Format\Audio\DefaultAudio">DefaultAudio</abbr></a></small></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
string
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_getPasses">getPasses</a>()
|
||||
<p>Returns the number of passes.</p>
|
||||
</td>
|
||||
<td><small>from <a href="../../../FFMpeg/Format/Audio/DefaultAudio.html#method_getPasses"><abbr title="FFMpeg\Format\Audio\DefaultAudio">DefaultAudio</abbr></a></small></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method___construct">__construct</a>()
|
||||
<p>
|
||||
</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
array
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_getAvailableAudioCodecs">getAvailableAudioCodecs</a>()
|
||||
<p>Returns the list of available audio codecs for this format.</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h2>Details</h2>
|
||||
|
||||
<h3 id="method_getExtraParams">
|
||||
<div class="location">at line 27</div>
|
||||
<code> public <abbr title="FFMpeg\Format\array()">array()</abbr>
|
||||
<strong>getExtraParams</strong>()</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Returns an array of extra parameters to add to ffmpeg commandline.</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><abbr title="FFMpeg\Format\array()">array()</abbr></td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_getAudioCodec">
|
||||
<div class="location">in <a href="../../../FFMpeg/Format/Audio/DefaultAudio.html#method_getAudioCodec"><abbr title="FFMpeg\Format\Audio\DefaultAudio">DefaultAudio</abbr></a> at line 44</div>
|
||||
<code> public string
|
||||
<strong>getAudioCodec</strong>()</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Returns the audio codec.</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td>string</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_setAudioCodec">
|
||||
<div class="location">in <a href="../../../FFMpeg/Format/Audio/DefaultAudio.html#method_setAudioCodec"><abbr title="FFMpeg\Format\Audio\DefaultAudio">DefaultAudio</abbr></a> at line 57</div>
|
||||
<code> public
|
||||
<strong>setAudioCodec</strong>(string $audioCodec)</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Sets the audio codec, Should be in the available ones, otherwise an exception is thrown.</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
<h4>Parameters</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td>string</td>
|
||||
<td>$audioCodec</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
<h4>Exceptions</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="http://php.net/InvalidArgumentException"><abbr title="InvalidArgumentException">InvalidArgumentException</abbr></a></td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_getAudioKiloBitrate">
|
||||
<div class="location">in <a href="../../../FFMpeg/Format/Audio/DefaultAudio.html#method_getAudioKiloBitrate"><abbr title="FFMpeg\Format\Audio\DefaultAudio">DefaultAudio</abbr></a> at line 74</div>
|
||||
<code> public integer
|
||||
<strong>getAudioKiloBitrate</strong>()</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Gets the audio kiloBitrate value.</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td>integer</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_setAudioKiloBitrate">
|
||||
<div class="location">in <a href="../../../FFMpeg/Format/Audio/DefaultAudio.html#method_setAudioKiloBitrate"><abbr title="FFMpeg\Format\Audio\DefaultAudio">DefaultAudio</abbr></a> at line 85</div>
|
||||
<code> public
|
||||
<strong>setAudioKiloBitrate</strong>(integer $kiloBitrate)</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Sets the kiloBitrate value.</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
<h4>Parameters</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td>integer</td>
|
||||
<td>$kiloBitrate</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
<h4>Exceptions</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="http://php.net/InvalidArgumentException"><abbr title="InvalidArgumentException">InvalidArgumentException</abbr></a></td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_getAudioChannels">
|
||||
<div class="location">in <a href="../../../FFMpeg/Format/Audio/DefaultAudio.html#method_getAudioChannels"><abbr title="FFMpeg\Format\Audio\DefaultAudio">DefaultAudio</abbr></a> at line 99</div>
|
||||
<code> public integer
|
||||
<strong>getAudioChannels</strong>()</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Gets the audio channels value.</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td>integer</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_setAudioChannels">
|
||||
<div class="location">in <a href="../../../FFMpeg/Format/Audio/DefaultAudio.html#method_setAudioChannels"><abbr title="FFMpeg\Format\Audio\DefaultAudio">DefaultAudio</abbr></a> at line 110</div>
|
||||
<code> public
|
||||
<strong>setAudioChannels</strong>(integer $channels)</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Sets the channels value.</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
<h4>Parameters</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td>integer</td>
|
||||
<td>$channels</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
<h4>Exceptions</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="http://php.net/InvalidArgumentException"><abbr title="InvalidArgumentException">InvalidArgumentException</abbr></a></td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_createProgressListener">
|
||||
<div class="location">in <a href="../../../FFMpeg/Format/Audio/DefaultAudio.html#method_createProgressListener"><abbr title="FFMpeg\Format\Audio\DefaultAudio">DefaultAudio</abbr></a> at line 124</div>
|
||||
<code> public array
|
||||
<strong>createProgressListener</strong>(<a href="../../../FFMpeg/Media/MediaTypeInterface.html"><abbr title="FFMpeg\Media\MediaTypeInterface">MediaTypeInterface</abbr></a> $media, <a href="../../../FFMpeg/FFProbe.html"><abbr title="FFMpeg\FFProbe">FFProbe</abbr></a> $ffprobe, Integer $pass, Integer $total)</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Creates the progress listener.</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
<h4>Parameters</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="../../../FFMpeg/Media/MediaTypeInterface.html"><abbr title="FFMpeg\Media\MediaTypeInterface">MediaTypeInterface</abbr></a></td>
|
||||
<td>$media</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><a href="../../../FFMpeg/FFProbe.html"><abbr title="FFMpeg\FFProbe">FFProbe</abbr></a></td>
|
||||
<td>$ffprobe</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Integer</td>
|
||||
<td>$pass</td>
|
||||
<td>The current pas snumber</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Integer</td>
|
||||
<td>$total</td>
|
||||
<td>The total pass number</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td>array</td>
|
||||
<td>An array of listeners</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_getPasses">
|
||||
<div class="location">in <a href="../../../FFMpeg/Format/Audio/DefaultAudio.html#method_getPasses"><abbr title="FFMpeg\Format\Audio\DefaultAudio">DefaultAudio</abbr></a> at line 138</div>
|
||||
<code> public string
|
||||
<strong>getPasses</strong>()</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Returns the number of passes.</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td>string</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method___construct">
|
||||
<div class="location">at line 19</div>
|
||||
<code> public
|
||||
<strong>__construct</strong>()</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>
|
||||
</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_getAvailableAudioCodecs">
|
||||
<div class="location">at line 35</div>
|
||||
<code> public array
|
||||
<strong>getAvailableAudioCodecs</strong>()</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Returns the list of available audio codecs for this format.</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td>array</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
</div>
|
||||
<div id="footer">
|
||||
Generated by <a href="http://sami.sensiolabs.org/" target="_top">Sami, the API Documentation Generator</a>.
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
|
|
@ -1,498 +0,0 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<meta name="robots" content="index, follow, all" />
|
||||
<title>FFMpeg\Format\Audio\Wav | PHP-FFMpeg API</title>
|
||||
<link rel="stylesheet" type="text/css" href="../../../stylesheet.css">
|
||||
</head>
|
||||
<body id="class">
|
||||
<div class="header">
|
||||
<ul>
|
||||
<li><a href="../../../classes.html">Classes</a></li>
|
||||
<li><a href="../../../namespaces.html">Namespaces</a></li>
|
||||
<li><a href="../../../interfaces.html">Interfaces</a></li>
|
||||
<li><a href="../../../traits.html">Traits</a></li>
|
||||
<li><a href="../../../doc-index.html">Index</a></li>
|
||||
|
||||
</ul>
|
||||
|
||||
<div id="title">PHP-FFMpeg API</div>
|
||||
|
||||
<div class="type">Class</div>
|
||||
<h1><a href="../../../FFMpeg/Format/Audio.html">FFMpeg\Format\Audio</a>\Wav</h1>
|
||||
</div>
|
||||
<div class="content">
|
||||
<p> class
|
||||
<strong>Wav</strong> extends <a href="../../../FFMpeg/Format/Audio/DefaultAudio.html"><abbr title="FFMpeg\Format\Audio\DefaultAudio">DefaultAudio</abbr></a></p>
|
||||
|
||||
<div class="description">
|
||||
<p>The WAV audio format</p>
|
||||
<p>
|
||||
</p>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<h2>Methods</h2>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td class="type">
|
||||
<abbr title="FFMpeg\Format\array()">array()</abbr>
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_getExtraParams">getExtraParams</a>()
|
||||
<p>Returns an array of extra parameters to add to ffmpeg commandline.</p>
|
||||
</td>
|
||||
<td><small>from <a href="../../../FFMpeg/Format/Audio/DefaultAudio.html#method_getExtraParams"><abbr title="FFMpeg\Format\Audio\DefaultAudio">DefaultAudio</abbr></a></small></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
string
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_getAudioCodec">getAudioCodec</a>()
|
||||
<p>Returns the audio codec.</p>
|
||||
</td>
|
||||
<td><small>from <a href="../../../FFMpeg/Format/Audio/DefaultAudio.html#method_getAudioCodec"><abbr title="FFMpeg\Format\Audio\DefaultAudio">DefaultAudio</abbr></a></small></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_setAudioCodec">setAudioCodec</a>(string $audioCodec)
|
||||
<p>Sets the audio codec, Should be in the available ones, otherwise an exception is thrown.</p>
|
||||
</td>
|
||||
<td><small>from <a href="../../../FFMpeg/Format/Audio/DefaultAudio.html#method_setAudioCodec"><abbr title="FFMpeg\Format\Audio\DefaultAudio">DefaultAudio</abbr></a></small></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
integer
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_getAudioKiloBitrate">getAudioKiloBitrate</a>()
|
||||
<p>Gets the audio kiloBitrate value.</p>
|
||||
</td>
|
||||
<td><small>from <a href="../../../FFMpeg/Format/Audio/DefaultAudio.html#method_getAudioKiloBitrate"><abbr title="FFMpeg\Format\Audio\DefaultAudio">DefaultAudio</abbr></a></small></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_setAudioKiloBitrate">setAudioKiloBitrate</a>(integer $kiloBitrate)
|
||||
<p>Sets the kiloBitrate value.</p>
|
||||
</td>
|
||||
<td><small>from <a href="../../../FFMpeg/Format/Audio/DefaultAudio.html#method_setAudioKiloBitrate"><abbr title="FFMpeg\Format\Audio\DefaultAudio">DefaultAudio</abbr></a></small></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
integer
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_getAudioChannels">getAudioChannels</a>()
|
||||
<p>Gets the audio channels value.</p>
|
||||
</td>
|
||||
<td><small>from <a href="../../../FFMpeg/Format/Audio/DefaultAudio.html#method_getAudioChannels"><abbr title="FFMpeg\Format\Audio\DefaultAudio">DefaultAudio</abbr></a></small></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_setAudioChannels">setAudioChannels</a>(integer $channels)
|
||||
<p>Sets the channels value.</p>
|
||||
</td>
|
||||
<td><small>from <a href="../../../FFMpeg/Format/Audio/DefaultAudio.html#method_setAudioChannels"><abbr title="FFMpeg\Format\Audio\DefaultAudio">DefaultAudio</abbr></a></small></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
array
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_createProgressListener">createProgressListener</a>(<a href="../../../FFMpeg/Media/MediaTypeInterface.html"><abbr title="FFMpeg\Media\MediaTypeInterface">MediaTypeInterface</abbr></a> $media, <a href="../../../FFMpeg/FFProbe.html"><abbr title="FFMpeg\FFProbe">FFProbe</abbr></a> $ffprobe, Integer $pass, Integer $total)
|
||||
<p>Creates the progress listener.</p>
|
||||
</td>
|
||||
<td><small>from <a href="../../../FFMpeg/Format/Audio/DefaultAudio.html#method_createProgressListener"><abbr title="FFMpeg\Format\Audio\DefaultAudio">DefaultAudio</abbr></a></small></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
string
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_getPasses">getPasses</a>()
|
||||
<p>Returns the number of passes.</p>
|
||||
</td>
|
||||
<td><small>from <a href="../../../FFMpeg/Format/Audio/DefaultAudio.html#method_getPasses"><abbr title="FFMpeg\Format\Audio\DefaultAudio">DefaultAudio</abbr></a></small></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method___construct">__construct</a>()
|
||||
<p>
|
||||
</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
array
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_getAvailableAudioCodecs">getAvailableAudioCodecs</a>()
|
||||
<p>Returns the list of available audio codecs for this format.</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h2>Details</h2>
|
||||
|
||||
<h3 id="method_getExtraParams">
|
||||
<div class="location">in <a href="../../../FFMpeg/Format/Audio/DefaultAudio.html#method_getExtraParams"><abbr title="FFMpeg\Format\Audio\DefaultAudio">DefaultAudio</abbr></a> at line 36</div>
|
||||
<code> public <abbr title="FFMpeg\Format\array()">array()</abbr>
|
||||
<strong>getExtraParams</strong>()</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Returns an array of extra parameters to add to ffmpeg commandline.</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><abbr title="FFMpeg\Format\array()">array()</abbr></td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_getAudioCodec">
|
||||
<div class="location">in <a href="../../../FFMpeg/Format/Audio/DefaultAudio.html#method_getAudioCodec"><abbr title="FFMpeg\Format\Audio\DefaultAudio">DefaultAudio</abbr></a> at line 44</div>
|
||||
<code> public string
|
||||
<strong>getAudioCodec</strong>()</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Returns the audio codec.</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td>string</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_setAudioCodec">
|
||||
<div class="location">in <a href="../../../FFMpeg/Format/Audio/DefaultAudio.html#method_setAudioCodec"><abbr title="FFMpeg\Format\Audio\DefaultAudio">DefaultAudio</abbr></a> at line 57</div>
|
||||
<code> public
|
||||
<strong>setAudioCodec</strong>(string $audioCodec)</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Sets the audio codec, Should be in the available ones, otherwise an exception is thrown.</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
<h4>Parameters</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td>string</td>
|
||||
<td>$audioCodec</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
<h4>Exceptions</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="http://php.net/InvalidArgumentException"><abbr title="InvalidArgumentException">InvalidArgumentException</abbr></a></td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_getAudioKiloBitrate">
|
||||
<div class="location">in <a href="../../../FFMpeg/Format/Audio/DefaultAudio.html#method_getAudioKiloBitrate"><abbr title="FFMpeg\Format\Audio\DefaultAudio">DefaultAudio</abbr></a> at line 74</div>
|
||||
<code> public integer
|
||||
<strong>getAudioKiloBitrate</strong>()</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Gets the audio kiloBitrate value.</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td>integer</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_setAudioKiloBitrate">
|
||||
<div class="location">in <a href="../../../FFMpeg/Format/Audio/DefaultAudio.html#method_setAudioKiloBitrate"><abbr title="FFMpeg\Format\Audio\DefaultAudio">DefaultAudio</abbr></a> at line 85</div>
|
||||
<code> public
|
||||
<strong>setAudioKiloBitrate</strong>(integer $kiloBitrate)</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Sets the kiloBitrate value.</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
<h4>Parameters</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td>integer</td>
|
||||
<td>$kiloBitrate</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
<h4>Exceptions</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="http://php.net/InvalidArgumentException"><abbr title="InvalidArgumentException">InvalidArgumentException</abbr></a></td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_getAudioChannels">
|
||||
<div class="location">in <a href="../../../FFMpeg/Format/Audio/DefaultAudio.html#method_getAudioChannels"><abbr title="FFMpeg\Format\Audio\DefaultAudio">DefaultAudio</abbr></a> at line 99</div>
|
||||
<code> public integer
|
||||
<strong>getAudioChannels</strong>()</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Gets the audio channels value.</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td>integer</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_setAudioChannels">
|
||||
<div class="location">in <a href="../../../FFMpeg/Format/Audio/DefaultAudio.html#method_setAudioChannels"><abbr title="FFMpeg\Format\Audio\DefaultAudio">DefaultAudio</abbr></a> at line 110</div>
|
||||
<code> public
|
||||
<strong>setAudioChannels</strong>(integer $channels)</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Sets the channels value.</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
<h4>Parameters</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td>integer</td>
|
||||
<td>$channels</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
<h4>Exceptions</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="http://php.net/InvalidArgumentException"><abbr title="InvalidArgumentException">InvalidArgumentException</abbr></a></td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_createProgressListener">
|
||||
<div class="location">in <a href="../../../FFMpeg/Format/Audio/DefaultAudio.html#method_createProgressListener"><abbr title="FFMpeg\Format\Audio\DefaultAudio">DefaultAudio</abbr></a> at line 124</div>
|
||||
<code> public array
|
||||
<strong>createProgressListener</strong>(<a href="../../../FFMpeg/Media/MediaTypeInterface.html"><abbr title="FFMpeg\Media\MediaTypeInterface">MediaTypeInterface</abbr></a> $media, <a href="../../../FFMpeg/FFProbe.html"><abbr title="FFMpeg\FFProbe">FFProbe</abbr></a> $ffprobe, Integer $pass, Integer $total)</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Creates the progress listener.</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
<h4>Parameters</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="../../../FFMpeg/Media/MediaTypeInterface.html"><abbr title="FFMpeg\Media\MediaTypeInterface">MediaTypeInterface</abbr></a></td>
|
||||
<td>$media</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><a href="../../../FFMpeg/FFProbe.html"><abbr title="FFMpeg\FFProbe">FFProbe</abbr></a></td>
|
||||
<td>$ffprobe</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Integer</td>
|
||||
<td>$pass</td>
|
||||
<td>The current pas snumber</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Integer</td>
|
||||
<td>$total</td>
|
||||
<td>The total pass number</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td>array</td>
|
||||
<td>An array of listeners</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_getPasses">
|
||||
<div class="location">in <a href="../../../FFMpeg/Format/Audio/DefaultAudio.html#method_getPasses"><abbr title="FFMpeg\Format\Audio\DefaultAudio">DefaultAudio</abbr></a> at line 138</div>
|
||||
<code> public string
|
||||
<strong>getPasses</strong>()</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Returns the number of passes.</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td>string</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method___construct">
|
||||
<div class="location">at line 19</div>
|
||||
<code> public
|
||||
<strong>__construct</strong>()</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>
|
||||
</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_getAvailableAudioCodecs">
|
||||
<div class="location">at line 27</div>
|
||||
<code> public array
|
||||
<strong>getAvailableAudioCodecs</strong>()</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Returns the list of available audio codecs for this format.</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td>array</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
</div>
|
||||
<div id="footer">
|
||||
Generated by <a href="http://sami.sensiolabs.org/" target="_top">Sami, the API Documentation Generator</a>.
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
|
|
@ -1,9 +0,0 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<meta name="robots" content="index, follow, all" />
|
||||
<title>FFMpeg\Format\Audio | PHP-FFMpeg API</title>
|
||||
<link rel="stylesheet" type="text/css" href="../../../stylesheet.css">
|
||||
</head>
|
||||
</html>
|
||||
|
|
@ -1,263 +0,0 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<meta name="robots" content="index, follow, all" />
|
||||
<title>FFMpeg\Format\AudioInterface | PHP-FFMpeg API</title>
|
||||
<link rel="stylesheet" type="text/css" href="../../stylesheet.css">
|
||||
</head>
|
||||
<body id="class">
|
||||
<div class="header">
|
||||
<ul>
|
||||
<li><a href="../../classes.html">Classes</a></li>
|
||||
<li><a href="../../namespaces.html">Namespaces</a></li>
|
||||
<li><a href="../../interfaces.html">Interfaces</a></li>
|
||||
<li><a href="../../traits.html">Traits</a></li>
|
||||
<li><a href="../../doc-index.html">Index</a></li>
|
||||
|
||||
</ul>
|
||||
|
||||
<div id="title">PHP-FFMpeg API</div>
|
||||
|
||||
<div class="type">Interface</div>
|
||||
<h1><a href="../../FFMpeg/Format.html">FFMpeg\Format</a>\AudioInterface</h1>
|
||||
</div>
|
||||
<div class="content">
|
||||
<p> interface
|
||||
<strong>AudioInterface</strong> implements
|
||||
<a href="../../FFMpeg/Format/FormatInterface.html"><abbr title="FFMpeg\Format\FormatInterface">FormatInterface</abbr></a></p>
|
||||
|
||||
|
||||
|
||||
|
||||
<h2>Methods</h2>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td class="type">
|
||||
string
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_getPasses">getPasses</a>()
|
||||
<p>Returns the number of passes.</p>
|
||||
</td>
|
||||
<td><small>from <a href="../../FFMpeg/Format/FormatInterface.html#method_getPasses"><abbr title="FFMpeg\Format\FormatInterface">FormatInterface</abbr></a></small></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
<abbr title="FFMpeg\Format\array()">array()</abbr>
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_getExtraParams">getExtraParams</a>()
|
||||
<p>Returns an array of extra parameters to add to ffmpeg commandline.</p>
|
||||
</td>
|
||||
<td><small>from <a href="../../FFMpeg/Format/FormatInterface.html#method_getExtraParams"><abbr title="FFMpeg\Format\FormatInterface">FormatInterface</abbr></a></small></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
integer
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_getAudioKiloBitrate">getAudioKiloBitrate</a>()
|
||||
<p>Gets the audio kiloBitrate value.</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
integer
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_getAudioChannels">getAudioChannels</a>()
|
||||
<p>Gets the audio channels value.</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
string
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_getAudioCodec">getAudioCodec</a>()
|
||||
<p>Returns the audio codec.</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
array
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_getAvailableAudioCodecs">getAvailableAudioCodecs</a>()
|
||||
<p>Returns the list of available audio codecs for this format.</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h2>Details</h2>
|
||||
|
||||
<h3 id="method_getPasses">
|
||||
<div class="location">in <a href="../../FFMpeg/Format/FormatInterface.html#method_getPasses"><abbr title="FFMpeg\Format\FormatInterface">FormatInterface</abbr></a> at line 20</div>
|
||||
<code> public string
|
||||
<strong>getPasses</strong>()</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Returns the number of passes.</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td>string</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_getExtraParams">
|
||||
<div class="location">in <a href="../../FFMpeg/Format/FormatInterface.html#method_getExtraParams"><abbr title="FFMpeg\Format\FormatInterface">FormatInterface</abbr></a> at line 27</div>
|
||||
<code> public <abbr title="FFMpeg\Format\array()">array()</abbr>
|
||||
<strong>getExtraParams</strong>()</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Returns an array of extra parameters to add to ffmpeg commandline.</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><abbr title="FFMpeg\Format\array()">array()</abbr></td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_getAudioKiloBitrate">
|
||||
<div class="location">at line 20</div>
|
||||
<code> public integer
|
||||
<strong>getAudioKiloBitrate</strong>()</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Gets the audio kiloBitrate value.</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td>integer</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_getAudioChannels">
|
||||
<div class="location">at line 27</div>
|
||||
<code> public integer
|
||||
<strong>getAudioChannels</strong>()</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Gets the audio channels value.</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td>integer</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_getAudioCodec">
|
||||
<div class="location">at line 34</div>
|
||||
<code> public string
|
||||
<strong>getAudioCodec</strong>()</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Returns the audio codec.</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td>string</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_getAvailableAudioCodecs">
|
||||
<div class="location">at line 41</div>
|
||||
<code> public array
|
||||
<strong>getAvailableAudioCodecs</strong>()</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Returns the list of available audio codecs for this format.</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td>array</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
</div>
|
||||
<div id="footer">
|
||||
Generated by <a href="http://sami.sensiolabs.org/" target="_top">Sami, the API Documentation Generator</a>.
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
|
|
@ -1,118 +0,0 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<meta name="robots" content="index, follow, all" />
|
||||
<title>FFMpeg\Format\FormatInterface | PHP-FFMpeg API</title>
|
||||
<link rel="stylesheet" type="text/css" href="../../stylesheet.css">
|
||||
</head>
|
||||
<body id="class">
|
||||
<div class="header">
|
||||
<ul>
|
||||
<li><a href="../../classes.html">Classes</a></li>
|
||||
<li><a href="../../namespaces.html">Namespaces</a></li>
|
||||
<li><a href="../../interfaces.html">Interfaces</a></li>
|
||||
<li><a href="../../traits.html">Traits</a></li>
|
||||
<li><a href="../../doc-index.html">Index</a></li>
|
||||
|
||||
</ul>
|
||||
|
||||
<div id="title">PHP-FFMpeg API</div>
|
||||
|
||||
<div class="type">Interface</div>
|
||||
<h1><a href="../../FFMpeg/Format.html">FFMpeg\Format</a>\FormatInterface</h1>
|
||||
</div>
|
||||
<div class="content">
|
||||
<p> interface
|
||||
<strong>FormatInterface</strong></p>
|
||||
|
||||
|
||||
|
||||
|
||||
<h2>Methods</h2>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td class="type">
|
||||
string
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_getPasses">getPasses</a>()
|
||||
<p>Returns the number of passes.</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
<abbr title="FFMpeg\Format\array()">array()</abbr>
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_getExtraParams">getExtraParams</a>()
|
||||
<p>Returns an array of extra parameters to add to ffmpeg commandline.</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h2>Details</h2>
|
||||
|
||||
<h3 id="method_getPasses">
|
||||
<div class="location">at line 20</div>
|
||||
<code> public string
|
||||
<strong>getPasses</strong>()</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Returns the number of passes.</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td>string</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_getExtraParams">
|
||||
<div class="location">at line 27</div>
|
||||
<code> public <abbr title="FFMpeg\Format\array()">array()</abbr>
|
||||
<strong>getExtraParams</strong>()</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Returns an array of extra parameters to add to ffmpeg commandline.</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><abbr title="FFMpeg\Format\array()">array()</abbr></td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
</div>
|
||||
<div id="footer">
|
||||
Generated by <a href="http://sami.sensiolabs.org/" target="_top">Sami, the API Documentation Generator</a>.
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
|
|
@ -1,119 +0,0 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<meta name="robots" content="index, follow, all" />
|
||||
<title>FFMpeg\Format\FrameInterface | PHP-FFMpeg API</title>
|
||||
<link rel="stylesheet" type="text/css" href="../../stylesheet.css">
|
||||
</head>
|
||||
<body id="class">
|
||||
<div class="header">
|
||||
<ul>
|
||||
<li><a href="../../classes.html">Classes</a></li>
|
||||
<li><a href="../../namespaces.html">Namespaces</a></li>
|
||||
<li><a href="../../interfaces.html">Interfaces</a></li>
|
||||
<li><a href="../../traits.html">Traits</a></li>
|
||||
<li><a href="../../doc-index.html">Index</a></li>
|
||||
|
||||
</ul>
|
||||
|
||||
<div id="title">PHP-FFMpeg API</div>
|
||||
|
||||
<div class="type">Interface</div>
|
||||
<h1><a href="../../FFMpeg/Format.html">FFMpeg\Format</a>\FrameInterface</h1>
|
||||
</div>
|
||||
<div class="content">
|
||||
<p> interface
|
||||
<strong>FrameInterface</strong> implements
|
||||
<a href="../../FFMpeg/Format/FormatInterface.html"><abbr title="FFMpeg\Format\FormatInterface">FormatInterface</abbr></a></p>
|
||||
|
||||
|
||||
|
||||
|
||||
<h2>Methods</h2>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td class="type">
|
||||
string
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_getPasses">getPasses</a>()
|
||||
<p>Returns the number of passes.</p>
|
||||
</td>
|
||||
<td><small>from <a href="../../FFMpeg/Format/FormatInterface.html#method_getPasses"><abbr title="FFMpeg\Format\FormatInterface">FormatInterface</abbr></a></small></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
<abbr title="FFMpeg\Format\array()">array()</abbr>
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_getExtraParams">getExtraParams</a>()
|
||||
<p>Returns an array of extra parameters to add to ffmpeg commandline.</p>
|
||||
</td>
|
||||
<td><small>from <a href="../../FFMpeg/Format/FormatInterface.html#method_getExtraParams"><abbr title="FFMpeg\Format\FormatInterface">FormatInterface</abbr></a></small></td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h2>Details</h2>
|
||||
|
||||
<h3 id="method_getPasses">
|
||||
<div class="location">in <a href="../../FFMpeg/Format/FormatInterface.html#method_getPasses"><abbr title="FFMpeg\Format\FormatInterface">FormatInterface</abbr></a> at line 20</div>
|
||||
<code> public string
|
||||
<strong>getPasses</strong>()</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Returns the number of passes.</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td>string</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_getExtraParams">
|
||||
<div class="location">in <a href="../../FFMpeg/Format/FormatInterface.html#method_getExtraParams"><abbr title="FFMpeg\Format\FormatInterface">FormatInterface</abbr></a> at line 27</div>
|
||||
<code> public <abbr title="FFMpeg\Format\array()">array()</abbr>
|
||||
<strong>getExtraParams</strong>()</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Returns an array of extra parameters to add to ffmpeg commandline.</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><abbr title="FFMpeg\Format\array()">array()</abbr></td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
</div>
|
||||
<div id="footer">
|
||||
Generated by <a href="http://sami.sensiolabs.org/" target="_top">Sami, the API Documentation Generator</a>.
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
|
|
@ -1,48 +0,0 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<meta name="robots" content="index, follow, all" />
|
||||
<title>FFMpeg\Format\ProgressListener | PHP-FFMpeg API</title>
|
||||
<link rel="stylesheet" type="text/css" href="../../stylesheet.css">
|
||||
</head>
|
||||
<body id="overview">
|
||||
<div class="header">
|
||||
<ul>
|
||||
<li><a href="../../classes.html">Classes</a></li>
|
||||
<li><a href="../../namespaces.html">Namespaces</a></li>
|
||||
<li><a href="../../interfaces.html">Interfaces</a></li>
|
||||
<li><a href="../../traits.html">Traits</a></li>
|
||||
<li><a href="../../doc-index.html">Index</a></li>
|
||||
|
||||
</ul>
|
||||
|
||||
<div id="title">PHP-FFMpeg API</div>
|
||||
|
||||
<div class="type">Namespace</div>
|
||||
<h1>FFMpeg\Format\ProgressListener</h1>
|
||||
</div>
|
||||
<div class="content">
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="../../FFMpeg/Format/ProgressListener/AbstractProgressListener.html"><abbr title="FFMpeg\Format\ProgressListener\AbstractProgressListener">AbstractProgressListener</abbr></a></td>
|
||||
<td class="last">
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><a href="../../FFMpeg/Format/ProgressListener/AudioProgressListener.html"><abbr title="FFMpeg\Format\ProgressListener\AudioProgressListener">AudioProgressListener</abbr></a></td>
|
||||
<td class="last">Parses ffmpeg stderr progress information.</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><a href="../../FFMpeg/Format/ProgressListener/VideoProgressListener.html"><abbr title="FFMpeg\Format\ProgressListener\VideoProgressListener">VideoProgressListener</abbr></a></td>
|
||||
<td class="last">Parses ffmpeg stderr progress information for video files.</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
</div>
|
||||
<div id="footer">
|
||||
Generated by <a href="http://sami.sensiolabs.org/" target="_top">Sami, the API Documentation Generator</a>.
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
|
|
@ -1,333 +0,0 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<meta name="robots" content="index, follow, all" />
|
||||
<title>FFMpeg\Format\ProgressListener\AbstractProgressListener | PHP-FFMpeg API</title>
|
||||
<link rel="stylesheet" type="text/css" href="../../../stylesheet.css">
|
||||
</head>
|
||||
<body id="class">
|
||||
<div class="header">
|
||||
<ul>
|
||||
<li><a href="../../../classes.html">Classes</a></li>
|
||||
<li><a href="../../../namespaces.html">Namespaces</a></li>
|
||||
<li><a href="../../../interfaces.html">Interfaces</a></li>
|
||||
<li><a href="../../../traits.html">Traits</a></li>
|
||||
<li><a href="../../../doc-index.html">Index</a></li>
|
||||
|
||||
</ul>
|
||||
|
||||
<div id="title">PHP-FFMpeg API</div>
|
||||
|
||||
<div class="type">Class</div>
|
||||
<h1><a href="../../../FFMpeg/Format/ProgressListener.html">FFMpeg\Format\ProgressListener</a>\AbstractProgressListener</h1>
|
||||
</div>
|
||||
<div class="content">
|
||||
<p>abstract class
|
||||
<strong>AbstractProgressListener</strong> extends <abbr title="Evenement\EventEmitter">EventEmitter</abbr> implements
|
||||
<abbr title="Alchemy\BinaryDriver\Listeners\ListenerInterface">ListenerInterface</abbr></p>
|
||||
|
||||
|
||||
|
||||
|
||||
<h2>Methods</h2>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td class="type">
|
||||
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method___construct">__construct</a>(<a href="../../../FFMpeg/FFProbe.html"><abbr title="FFMpeg\FFProbe">FFProbe</abbr></a> $ffprobe, string $pathfile, integer $currentPass, integer $totalPass)
|
||||
<p>
|
||||
</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
<a href="../../../FFMpeg/FFProbe.html"><abbr title="FFMpeg\FFProbe">FFProbe</abbr></a>
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_getFFProbe">getFFProbe</a>()
|
||||
<p>
|
||||
</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
string
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_getPathfile">getPathfile</a>()
|
||||
<p>
|
||||
</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
integer
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_getCurrentPass">getCurrentPass</a>()
|
||||
<p>
|
||||
</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
integer
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_getTotalPass">getTotalPass</a>()
|
||||
<p>
|
||||
</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_handle">handle</a>($type, $data)
|
||||
<p>{@inheritdoc}</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_forwardedEvents">forwardedEvents</a>()
|
||||
<p>{@inheritdoc}</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h2>Details</h2>
|
||||
|
||||
<h3 id="method___construct">
|
||||
<div class="location">at line 83</div>
|
||||
<code> public
|
||||
<strong>__construct</strong>(<a href="../../../FFMpeg/FFProbe.html"><abbr title="FFMpeg\FFProbe">FFProbe</abbr></a> $ffprobe, string $pathfile, integer $currentPass, integer $totalPass)</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>
|
||||
</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
<h4>Parameters</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="../../../FFMpeg/FFProbe.html"><abbr title="FFMpeg\FFProbe">FFProbe</abbr></a></td>
|
||||
<td>$ffprobe</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>string</td>
|
||||
<td>$pathfile</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>integer</td>
|
||||
<td>$currentPass</td>
|
||||
<td>The cureent pass number</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>integer</td>
|
||||
<td>$totalPass</td>
|
||||
<td>The total number of passes</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
<h4>Exceptions</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="http://php.net/RuntimeException"><abbr title="RuntimeException">RuntimeException</abbr></a></td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_getFFProbe">
|
||||
<div class="location">at line 94</div>
|
||||
<code> public <a href="../../../FFMpeg/FFProbe.html"><abbr title="FFMpeg\FFProbe">FFProbe</abbr></a>
|
||||
<strong>getFFProbe</strong>()</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>
|
||||
</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="../../../FFMpeg/FFProbe.html"><abbr title="FFMpeg\FFProbe">FFProbe</abbr></a></td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_getPathfile">
|
||||
<div class="location">at line 102</div>
|
||||
<code> public string
|
||||
<strong>getPathfile</strong>()</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>
|
||||
</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td>string</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_getCurrentPass">
|
||||
<div class="location">at line 110</div>
|
||||
<code> public integer
|
||||
<strong>getCurrentPass</strong>()</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>
|
||||
</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td>integer</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_getTotalPass">
|
||||
<div class="location">at line 118</div>
|
||||
<code> public integer
|
||||
<strong>getTotalPass</strong>()</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>
|
||||
</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td>integer</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_handle">
|
||||
<div class="location">at line 126</div>
|
||||
<code> public
|
||||
<strong>handle</strong>($type, $data)</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>{@inheritdoc}</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
<h4>Parameters</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td></td>
|
||||
<td>$type</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td></td>
|
||||
<td>$data</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_forwardedEvents">
|
||||
<div class="location">at line 136</div>
|
||||
<code> public
|
||||
<strong>forwardedEvents</strong>()</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>{@inheritdoc}</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
</div>
|
||||
<div id="footer">
|
||||
Generated by <a href="http://sami.sensiolabs.org/" target="_top">Sami, the API Documentation Generator</a>.
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
|
|
@ -1,369 +0,0 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<meta name="robots" content="index, follow, all" />
|
||||
<title>FFMpeg\Format\ProgressListener\AudioProgressListener | PHP-FFMpeg API</title>
|
||||
<link rel="stylesheet" type="text/css" href="../../../stylesheet.css">
|
||||
</head>
|
||||
<body id="class">
|
||||
<div class="header">
|
||||
<ul>
|
||||
<li><a href="../../../classes.html">Classes</a></li>
|
||||
<li><a href="../../../namespaces.html">Namespaces</a></li>
|
||||
<li><a href="../../../interfaces.html">Interfaces</a></li>
|
||||
<li><a href="../../../traits.html">Traits</a></li>
|
||||
<li><a href="../../../doc-index.html">Index</a></li>
|
||||
|
||||
</ul>
|
||||
|
||||
<div id="title">PHP-FFMpeg API</div>
|
||||
|
||||
<div class="type">Class</div>
|
||||
<h1><a href="../../../FFMpeg/Format/ProgressListener.html">FFMpeg\Format\ProgressListener</a>\AudioProgressListener</h1>
|
||||
</div>
|
||||
<div class="content">
|
||||
<p> class
|
||||
<strong>AudioProgressListener</strong> extends <a href="../../../FFMpeg/Format/ProgressListener/AbstractProgressListener.html"><abbr title="FFMpeg\Format\ProgressListener\AbstractProgressListener">AbstractProgressListener</abbr></a></p>
|
||||
|
||||
<div class="description">
|
||||
<p>Parses ffmpeg stderr progress information.</p>
|
||||
<p>An example:</p>
|
||||
|
||||
<pre>
|
||||
size= 3552kB time=00:03:47.29 bitrate= 128.0kbits/s
|
||||
</pre>
|
||||
</p>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<h2>Methods</h2>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td class="type">
|
||||
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method___construct">__construct</a>(<a href="../../../FFMpeg/FFProbe.html"><abbr title="FFMpeg\FFProbe">FFProbe</abbr></a> $ffprobe, string $pathfile, integer $currentPass, integer $totalPass)
|
||||
<p>
|
||||
</p>
|
||||
</td>
|
||||
<td><small>from <a href="../../../FFMpeg/Format/ProgressListener/AbstractProgressListener.html#method___construct"><abbr title="FFMpeg\Format\ProgressListener\AbstractProgressListener">AbstractProgressListener</abbr></a></small></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
<a href="../../../FFMpeg/FFProbe.html"><abbr title="FFMpeg\FFProbe">FFProbe</abbr></a>
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_getFFProbe">getFFProbe</a>()
|
||||
<p>
|
||||
</p>
|
||||
</td>
|
||||
<td><small>from <a href="../../../FFMpeg/Format/ProgressListener/AbstractProgressListener.html#method_getFFProbe"><abbr title="FFMpeg\Format\ProgressListener\AbstractProgressListener">AbstractProgressListener</abbr></a></small></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
string
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_getPathfile">getPathfile</a>()
|
||||
<p>
|
||||
</p>
|
||||
</td>
|
||||
<td><small>from <a href="../../../FFMpeg/Format/ProgressListener/AbstractProgressListener.html#method_getPathfile"><abbr title="FFMpeg\Format\ProgressListener\AbstractProgressListener">AbstractProgressListener</abbr></a></small></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
integer
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_getCurrentPass">getCurrentPass</a>()
|
||||
<p>
|
||||
</p>
|
||||
</td>
|
||||
<td><small>from <a href="../../../FFMpeg/Format/ProgressListener/AbstractProgressListener.html#method_getCurrentPass"><abbr title="FFMpeg\Format\ProgressListener\AbstractProgressListener">AbstractProgressListener</abbr></a></small></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
integer
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_getTotalPass">getTotalPass</a>()
|
||||
<p>
|
||||
</p>
|
||||
</td>
|
||||
<td><small>from <a href="../../../FFMpeg/Format/ProgressListener/AbstractProgressListener.html#method_getTotalPass"><abbr title="FFMpeg\Format\ProgressListener\AbstractProgressListener">AbstractProgressListener</abbr></a></small></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_handle">handle</a>($type, $data)
|
||||
<p>{@inheritdoc}</p>
|
||||
</td>
|
||||
<td><small>from <a href="../../../FFMpeg/Format/ProgressListener/AbstractProgressListener.html#method_handle"><abbr title="FFMpeg\Format\ProgressListener\AbstractProgressListener">AbstractProgressListener</abbr></a></small></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_forwardedEvents">forwardedEvents</a>()
|
||||
<p>{@inheritdoc}</p>
|
||||
</td>
|
||||
<td><small>from <a href="../../../FFMpeg/Format/ProgressListener/AbstractProgressListener.html#method_forwardedEvents"><abbr title="FFMpeg\Format\ProgressListener\AbstractProgressListener">AbstractProgressListener</abbr></a></small></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_getPattern">getPattern</a>()
|
||||
<p>
|
||||
</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h2>Details</h2>
|
||||
|
||||
<h3 id="method___construct">
|
||||
<div class="location">in <a href="../../../FFMpeg/Format/ProgressListener/AbstractProgressListener.html#method___construct"><abbr title="FFMpeg\Format\ProgressListener\AbstractProgressListener">AbstractProgressListener</abbr></a> at line 83</div>
|
||||
<code> public
|
||||
<strong>__construct</strong>(<a href="../../../FFMpeg/FFProbe.html"><abbr title="FFMpeg\FFProbe">FFProbe</abbr></a> $ffprobe, string $pathfile, integer $currentPass, integer $totalPass)</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>
|
||||
</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
<h4>Parameters</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="../../../FFMpeg/FFProbe.html"><abbr title="FFMpeg\FFProbe">FFProbe</abbr></a></td>
|
||||
<td>$ffprobe</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>string</td>
|
||||
<td>$pathfile</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>integer</td>
|
||||
<td>$currentPass</td>
|
||||
<td>The cureent pass number</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>integer</td>
|
||||
<td>$totalPass</td>
|
||||
<td>The total number of passes</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
<h4>Exceptions</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="http://php.net/RuntimeException"><abbr title="RuntimeException">RuntimeException</abbr></a></td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_getFFProbe">
|
||||
<div class="location">in <a href="../../../FFMpeg/Format/ProgressListener/AbstractProgressListener.html#method_getFFProbe"><abbr title="FFMpeg\Format\ProgressListener\AbstractProgressListener">AbstractProgressListener</abbr></a> at line 94</div>
|
||||
<code> public <a href="../../../FFMpeg/FFProbe.html"><abbr title="FFMpeg\FFProbe">FFProbe</abbr></a>
|
||||
<strong>getFFProbe</strong>()</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>
|
||||
</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="../../../FFMpeg/FFProbe.html"><abbr title="FFMpeg\FFProbe">FFProbe</abbr></a></td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_getPathfile">
|
||||
<div class="location">in <a href="../../../FFMpeg/Format/ProgressListener/AbstractProgressListener.html#method_getPathfile"><abbr title="FFMpeg\Format\ProgressListener\AbstractProgressListener">AbstractProgressListener</abbr></a> at line 102</div>
|
||||
<code> public string
|
||||
<strong>getPathfile</strong>()</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>
|
||||
</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td>string</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_getCurrentPass">
|
||||
<div class="location">in <a href="../../../FFMpeg/Format/ProgressListener/AbstractProgressListener.html#method_getCurrentPass"><abbr title="FFMpeg\Format\ProgressListener\AbstractProgressListener">AbstractProgressListener</abbr></a> at line 110</div>
|
||||
<code> public integer
|
||||
<strong>getCurrentPass</strong>()</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>
|
||||
</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td>integer</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_getTotalPass">
|
||||
<div class="location">in <a href="../../../FFMpeg/Format/ProgressListener/AbstractProgressListener.html#method_getTotalPass"><abbr title="FFMpeg\Format\ProgressListener\AbstractProgressListener">AbstractProgressListener</abbr></a> at line 118</div>
|
||||
<code> public integer
|
||||
<strong>getTotalPass</strong>()</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>
|
||||
</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td>integer</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_handle">
|
||||
<div class="location">in <a href="../../../FFMpeg/Format/ProgressListener/AbstractProgressListener.html#method_handle"><abbr title="FFMpeg\Format\ProgressListener\AbstractProgressListener">AbstractProgressListener</abbr></a> at line 126</div>
|
||||
<code> public
|
||||
<strong>handle</strong>($type, $data)</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>{@inheritdoc}</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
<h4>Parameters</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td></td>
|
||||
<td>$type</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td></td>
|
||||
<td>$data</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_forwardedEvents">
|
||||
<div class="location">in <a href="../../../FFMpeg/Format/ProgressListener/AbstractProgressListener.html#method_forwardedEvents"><abbr title="FFMpeg\Format\ProgressListener\AbstractProgressListener">AbstractProgressListener</abbr></a> at line 136</div>
|
||||
<code> public
|
||||
<strong>forwardedEvents</strong>()</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>{@inheritdoc}</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_getPattern">
|
||||
<div class="location">at line 25</div>
|
||||
<code> public
|
||||
<strong>getPattern</strong>()</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>
|
||||
</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
</div>
|
||||
<div id="footer">
|
||||
Generated by <a href="http://sami.sensiolabs.org/" target="_top">Sami, the API Documentation Generator</a>.
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
|
|
@ -1,369 +0,0 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<meta name="robots" content="index, follow, all" />
|
||||
<title>FFMpeg\Format\ProgressListener\VideoProgressListener | PHP-FFMpeg API</title>
|
||||
<link rel="stylesheet" type="text/css" href="../../../stylesheet.css">
|
||||
</head>
|
||||
<body id="class">
|
||||
<div class="header">
|
||||
<ul>
|
||||
<li><a href="../../../classes.html">Classes</a></li>
|
||||
<li><a href="../../../namespaces.html">Namespaces</a></li>
|
||||
<li><a href="../../../interfaces.html">Interfaces</a></li>
|
||||
<li><a href="../../../traits.html">Traits</a></li>
|
||||
<li><a href="../../../doc-index.html">Index</a></li>
|
||||
|
||||
</ul>
|
||||
|
||||
<div id="title">PHP-FFMpeg API</div>
|
||||
|
||||
<div class="type">Class</div>
|
||||
<h1><a href="../../../FFMpeg/Format/ProgressListener.html">FFMpeg\Format\ProgressListener</a>\VideoProgressListener</h1>
|
||||
</div>
|
||||
<div class="content">
|
||||
<p> class
|
||||
<strong>VideoProgressListener</strong> extends <a href="../../../FFMpeg/Format/ProgressListener/AbstractProgressListener.html"><abbr title="FFMpeg\Format\ProgressListener\AbstractProgressListener">AbstractProgressListener</abbr></a></p>
|
||||
|
||||
<div class="description">
|
||||
<p>Parses ffmpeg stderr progress information for video files.</p>
|
||||
<p>An example:</p>
|
||||
|
||||
<pre>
|
||||
frame= 171 fps=0.0 q=10.0 size= 18kB time=00:00:05.72 bitrate= 26.4kbits/s dup=8 drop=0
|
||||
</pre>
|
||||
</p>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<h2>Methods</h2>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td class="type">
|
||||
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method___construct">__construct</a>(<a href="../../../FFMpeg/FFProbe.html"><abbr title="FFMpeg\FFProbe">FFProbe</abbr></a> $ffprobe, string $pathfile, integer $currentPass, integer $totalPass)
|
||||
<p>
|
||||
</p>
|
||||
</td>
|
||||
<td><small>from <a href="../../../FFMpeg/Format/ProgressListener/AbstractProgressListener.html#method___construct"><abbr title="FFMpeg\Format\ProgressListener\AbstractProgressListener">AbstractProgressListener</abbr></a></small></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
<a href="../../../FFMpeg/FFProbe.html"><abbr title="FFMpeg\FFProbe">FFProbe</abbr></a>
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_getFFProbe">getFFProbe</a>()
|
||||
<p>
|
||||
</p>
|
||||
</td>
|
||||
<td><small>from <a href="../../../FFMpeg/Format/ProgressListener/AbstractProgressListener.html#method_getFFProbe"><abbr title="FFMpeg\Format\ProgressListener\AbstractProgressListener">AbstractProgressListener</abbr></a></small></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
string
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_getPathfile">getPathfile</a>()
|
||||
<p>
|
||||
</p>
|
||||
</td>
|
||||
<td><small>from <a href="../../../FFMpeg/Format/ProgressListener/AbstractProgressListener.html#method_getPathfile"><abbr title="FFMpeg\Format\ProgressListener\AbstractProgressListener">AbstractProgressListener</abbr></a></small></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
integer
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_getCurrentPass">getCurrentPass</a>()
|
||||
<p>
|
||||
</p>
|
||||
</td>
|
||||
<td><small>from <a href="../../../FFMpeg/Format/ProgressListener/AbstractProgressListener.html#method_getCurrentPass"><abbr title="FFMpeg\Format\ProgressListener\AbstractProgressListener">AbstractProgressListener</abbr></a></small></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
integer
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_getTotalPass">getTotalPass</a>()
|
||||
<p>
|
||||
</p>
|
||||
</td>
|
||||
<td><small>from <a href="../../../FFMpeg/Format/ProgressListener/AbstractProgressListener.html#method_getTotalPass"><abbr title="FFMpeg\Format\ProgressListener\AbstractProgressListener">AbstractProgressListener</abbr></a></small></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_handle">handle</a>($type, $data)
|
||||
<p>{@inheritdoc}</p>
|
||||
</td>
|
||||
<td><small>from <a href="../../../FFMpeg/Format/ProgressListener/AbstractProgressListener.html#method_handle"><abbr title="FFMpeg\Format\ProgressListener\AbstractProgressListener">AbstractProgressListener</abbr></a></small></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_forwardedEvents">forwardedEvents</a>()
|
||||
<p>{@inheritdoc}</p>
|
||||
</td>
|
||||
<td><small>from <a href="../../../FFMpeg/Format/ProgressListener/AbstractProgressListener.html#method_forwardedEvents"><abbr title="FFMpeg\Format\ProgressListener\AbstractProgressListener">AbstractProgressListener</abbr></a></small></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_getPattern">getPattern</a>()
|
||||
<p>
|
||||
</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h2>Details</h2>
|
||||
|
||||
<h3 id="method___construct">
|
||||
<div class="location">in <a href="../../../FFMpeg/Format/ProgressListener/AbstractProgressListener.html#method___construct"><abbr title="FFMpeg\Format\ProgressListener\AbstractProgressListener">AbstractProgressListener</abbr></a> at line 83</div>
|
||||
<code> public
|
||||
<strong>__construct</strong>(<a href="../../../FFMpeg/FFProbe.html"><abbr title="FFMpeg\FFProbe">FFProbe</abbr></a> $ffprobe, string $pathfile, integer $currentPass, integer $totalPass)</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>
|
||||
</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
<h4>Parameters</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="../../../FFMpeg/FFProbe.html"><abbr title="FFMpeg\FFProbe">FFProbe</abbr></a></td>
|
||||
<td>$ffprobe</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>string</td>
|
||||
<td>$pathfile</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>integer</td>
|
||||
<td>$currentPass</td>
|
||||
<td>The cureent pass number</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>integer</td>
|
||||
<td>$totalPass</td>
|
||||
<td>The total number of passes</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
<h4>Exceptions</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="http://php.net/RuntimeException"><abbr title="RuntimeException">RuntimeException</abbr></a></td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_getFFProbe">
|
||||
<div class="location">in <a href="../../../FFMpeg/Format/ProgressListener/AbstractProgressListener.html#method_getFFProbe"><abbr title="FFMpeg\Format\ProgressListener\AbstractProgressListener">AbstractProgressListener</abbr></a> at line 94</div>
|
||||
<code> public <a href="../../../FFMpeg/FFProbe.html"><abbr title="FFMpeg\FFProbe">FFProbe</abbr></a>
|
||||
<strong>getFFProbe</strong>()</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>
|
||||
</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="../../../FFMpeg/FFProbe.html"><abbr title="FFMpeg\FFProbe">FFProbe</abbr></a></td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_getPathfile">
|
||||
<div class="location">in <a href="../../../FFMpeg/Format/ProgressListener/AbstractProgressListener.html#method_getPathfile"><abbr title="FFMpeg\Format\ProgressListener\AbstractProgressListener">AbstractProgressListener</abbr></a> at line 102</div>
|
||||
<code> public string
|
||||
<strong>getPathfile</strong>()</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>
|
||||
</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td>string</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_getCurrentPass">
|
||||
<div class="location">in <a href="../../../FFMpeg/Format/ProgressListener/AbstractProgressListener.html#method_getCurrentPass"><abbr title="FFMpeg\Format\ProgressListener\AbstractProgressListener">AbstractProgressListener</abbr></a> at line 110</div>
|
||||
<code> public integer
|
||||
<strong>getCurrentPass</strong>()</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>
|
||||
</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td>integer</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_getTotalPass">
|
||||
<div class="location">in <a href="../../../FFMpeg/Format/ProgressListener/AbstractProgressListener.html#method_getTotalPass"><abbr title="FFMpeg\Format\ProgressListener\AbstractProgressListener">AbstractProgressListener</abbr></a> at line 118</div>
|
||||
<code> public integer
|
||||
<strong>getTotalPass</strong>()</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>
|
||||
</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td>integer</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_handle">
|
||||
<div class="location">in <a href="../../../FFMpeg/Format/ProgressListener/AbstractProgressListener.html#method_handle"><abbr title="FFMpeg\Format\ProgressListener\AbstractProgressListener">AbstractProgressListener</abbr></a> at line 126</div>
|
||||
<code> public
|
||||
<strong>handle</strong>($type, $data)</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>{@inheritdoc}</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
<h4>Parameters</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td></td>
|
||||
<td>$type</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td></td>
|
||||
<td>$data</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_forwardedEvents">
|
||||
<div class="location">in <a href="../../../FFMpeg/Format/ProgressListener/AbstractProgressListener.html#method_forwardedEvents"><abbr title="FFMpeg\Format\ProgressListener\AbstractProgressListener">AbstractProgressListener</abbr></a> at line 136</div>
|
||||
<code> public
|
||||
<strong>forwardedEvents</strong>()</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>{@inheritdoc}</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_getPattern">
|
||||
<div class="location">at line 25</div>
|
||||
<code> public
|
||||
<strong>getPattern</strong>()</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>
|
||||
</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
</div>
|
||||
<div id="footer">
|
||||
Generated by <a href="http://sami.sensiolabs.org/" target="_top">Sami, the API Documentation Generator</a>.
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
|
|
@ -1,9 +0,0 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<meta name="robots" content="index, follow, all" />
|
||||
<title>FFMpeg\Format\ProgressListener | PHP-FFMpeg API</title>
|
||||
<link rel="stylesheet" type="text/css" href="../../../stylesheet.css">
|
||||
</head>
|
||||
</html>
|
||||
|
|
@ -1,109 +0,0 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<meta name="robots" content="index, follow, all" />
|
||||
<title>FFMpeg\Format\ProgressableInterface | PHP-FFMpeg API</title>
|
||||
<link rel="stylesheet" type="text/css" href="../../stylesheet.css">
|
||||
</head>
|
||||
<body id="class">
|
||||
<div class="header">
|
||||
<ul>
|
||||
<li><a href="../../classes.html">Classes</a></li>
|
||||
<li><a href="../../namespaces.html">Namespaces</a></li>
|
||||
<li><a href="../../interfaces.html">Interfaces</a></li>
|
||||
<li><a href="../../traits.html">Traits</a></li>
|
||||
<li><a href="../../doc-index.html">Index</a></li>
|
||||
|
||||
</ul>
|
||||
|
||||
<div id="title">PHP-FFMpeg API</div>
|
||||
|
||||
<div class="type">Interface</div>
|
||||
<h1><a href="../../FFMpeg/Format.html">FFMpeg\Format</a>\ProgressableInterface</h1>
|
||||
</div>
|
||||
<div class="content">
|
||||
<p> interface
|
||||
<strong>ProgressableInterface</strong> implements
|
||||
<abbr title="Evenement\EventEmitterInterface">EventEmitterInterface</abbr></p>
|
||||
|
||||
|
||||
|
||||
|
||||
<h2>Methods</h2>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td class="type">
|
||||
array
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_createProgressListener">createProgressListener</a>(<a href="../../FFMpeg/Media/MediaTypeInterface.html"><abbr title="FFMpeg\Media\MediaTypeInterface">MediaTypeInterface</abbr></a> $media, <a href="../../FFMpeg/FFProbe.html"><abbr title="FFMpeg\FFProbe">FFProbe</abbr></a> $ffprobe, Integer $pass, Integer $total)
|
||||
<p>Creates the progress listener.</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h2>Details</h2>
|
||||
|
||||
<h3 id="method_createProgressListener">
|
||||
<div class="location">at line 30</div>
|
||||
<code> public array
|
||||
<strong>createProgressListener</strong>(<a href="../../FFMpeg/Media/MediaTypeInterface.html"><abbr title="FFMpeg\Media\MediaTypeInterface">MediaTypeInterface</abbr></a> $media, <a href="../../FFMpeg/FFProbe.html"><abbr title="FFMpeg\FFProbe">FFProbe</abbr></a> $ffprobe, Integer $pass, Integer $total)</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Creates the progress listener.</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
<h4>Parameters</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="../../FFMpeg/Media/MediaTypeInterface.html"><abbr title="FFMpeg\Media\MediaTypeInterface">MediaTypeInterface</abbr></a></td>
|
||||
<td>$media</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><a href="../../FFMpeg/FFProbe.html"><abbr title="FFMpeg\FFProbe">FFProbe</abbr></a></td>
|
||||
<td>$ffprobe</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Integer</td>
|
||||
<td>$pass</td>
|
||||
<td>The current pas snumber</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Integer</td>
|
||||
<td>$total</td>
|
||||
<td>The total pass number</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td>array</td>
|
||||
<td>An array of listeners</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
</div>
|
||||
<div id="footer">
|
||||
Generated by <a href="http://sami.sensiolabs.org/" target="_top">Sami, the API Documentation Generator</a>.
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
|
|
@ -1,59 +0,0 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<meta name="robots" content="index, follow, all" />
|
||||
<title>FFMpeg\Format\Video | PHP-FFMpeg API</title>
|
||||
<link rel="stylesheet" type="text/css" href="../../stylesheet.css">
|
||||
</head>
|
||||
<body id="overview">
|
||||
<div class="header">
|
||||
<ul>
|
||||
<li><a href="../../classes.html">Classes</a></li>
|
||||
<li><a href="../../namespaces.html">Namespaces</a></li>
|
||||
<li><a href="../../interfaces.html">Interfaces</a></li>
|
||||
<li><a href="../../traits.html">Traits</a></li>
|
||||
<li><a href="../../doc-index.html">Index</a></li>
|
||||
|
||||
</ul>
|
||||
|
||||
<div id="title">PHP-FFMpeg API</div>
|
||||
|
||||
<div class="type">Namespace</div>
|
||||
<h1>FFMpeg\Format\Video</h1>
|
||||
</div>
|
||||
<div class="content">
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="../../FFMpeg/Format/Video/DefaultVideo.html"><abbr title="FFMpeg\Format\Video\DefaultVideo">DefaultVideo</abbr></a></td>
|
||||
<td class="last">The abstract default Video format</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><a href="../../FFMpeg/Format/Video/Ogg.html"><abbr title="FFMpeg\Format\Video\Ogg">Ogg</abbr></a></td>
|
||||
<td class="last">The Ogg video format</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><a href="../../FFMpeg/Format/Video/WMV.html"><abbr title="FFMpeg\Format\Video\WMV">WMV</abbr></a></td>
|
||||
<td class="last">The WMV video format</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><a href="../../FFMpeg/Format/Video/WMV3.html"><abbr title="FFMpeg\Format\Video\WMV3">WMV3</abbr></a></td>
|
||||
<td class="last">The WMV video format</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><a href="../../FFMpeg/Format/Video/WebM.html"><abbr title="FFMpeg\Format\Video\WebM">WebM</abbr></a></td>
|
||||
<td class="last">The WebM video format</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><a href="../../FFMpeg/Format/Video/X264.html"><abbr title="FFMpeg\Format\Video\X264">X264</abbr></a></td>
|
||||
<td class="last">The X264 video format</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
</div>
|
||||
<div id="footer">
|
||||
Generated by <a href="http://sami.sensiolabs.org/" target="_top">Sami, the API Documentation Generator</a>.
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
|
|
@ -1,639 +0,0 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<meta name="robots" content="index, follow, all" />
|
||||
<title>FFMpeg\Format\Video\DefaultVideo | PHP-FFMpeg API</title>
|
||||
<link rel="stylesheet" type="text/css" href="../../../stylesheet.css">
|
||||
</head>
|
||||
<body id="class">
|
||||
<div class="header">
|
||||
<ul>
|
||||
<li><a href="../../../classes.html">Classes</a></li>
|
||||
<li><a href="../../../namespaces.html">Namespaces</a></li>
|
||||
<li><a href="../../../interfaces.html">Interfaces</a></li>
|
||||
<li><a href="../../../traits.html">Traits</a></li>
|
||||
<li><a href="../../../doc-index.html">Index</a></li>
|
||||
|
||||
</ul>
|
||||
|
||||
<div id="title">PHP-FFMpeg API</div>
|
||||
|
||||
<div class="type">Class</div>
|
||||
<h1><a href="../../../FFMpeg/Format/Video.html">FFMpeg\Format\Video</a>\DefaultVideo</h1>
|
||||
</div>
|
||||
<div class="content">
|
||||
<p>abstract class
|
||||
<strong>DefaultVideo</strong> extends <a href="../../../FFMpeg/Format/Audio/DefaultAudio.html"><abbr title="FFMpeg\Format\Audio\DefaultAudio">DefaultAudio</abbr></a> implements
|
||||
<a href="../../../FFMpeg/Format/VideoInterface.html"><abbr title="FFMpeg\Format\VideoInterface">VideoInterface</abbr></a></p>
|
||||
|
||||
<div class="description">
|
||||
<p>The abstract default Video format</p>
|
||||
<p>
|
||||
</p>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<h2>Methods</h2>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td class="type">
|
||||
<abbr title="FFMpeg\Format\array()">array()</abbr>
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_getExtraParams">getExtraParams</a>()
|
||||
<p>Returns an array of extra parameters to add to ffmpeg commandline.</p>
|
||||
</td>
|
||||
<td><small>from <a href="../../../FFMpeg/Format/Audio/DefaultAudio.html#method_getExtraParams"><abbr title="FFMpeg\Format\Audio\DefaultAudio">DefaultAudio</abbr></a></small></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
string
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_getAudioCodec">getAudioCodec</a>()
|
||||
<p>Returns the audio codec.</p>
|
||||
</td>
|
||||
<td><small>from <a href="../../../FFMpeg/Format/Audio/DefaultAudio.html#method_getAudioCodec"><abbr title="FFMpeg\Format\Audio\DefaultAudio">DefaultAudio</abbr></a></small></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_setAudioCodec">setAudioCodec</a>(string $audioCodec)
|
||||
<p>Sets the audio codec, Should be in the available ones, otherwise an exception is thrown.</p>
|
||||
</td>
|
||||
<td><small>from <a href="../../../FFMpeg/Format/Audio/DefaultAudio.html#method_setAudioCodec"><abbr title="FFMpeg\Format\Audio\DefaultAudio">DefaultAudio</abbr></a></small></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
integer
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_getAudioKiloBitrate">getAudioKiloBitrate</a>()
|
||||
<p>Gets the audio kiloBitrate value.</p>
|
||||
</td>
|
||||
<td><small>from <a href="../../../FFMpeg/Format/Audio/DefaultAudio.html#method_getAudioKiloBitrate"><abbr title="FFMpeg\Format\Audio\DefaultAudio">DefaultAudio</abbr></a></small></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_setAudioKiloBitrate">setAudioKiloBitrate</a>(integer $kiloBitrate)
|
||||
<p>Sets the kiloBitrate value.</p>
|
||||
</td>
|
||||
<td><small>from <a href="../../../FFMpeg/Format/Audio/DefaultAudio.html#method_setAudioKiloBitrate"><abbr title="FFMpeg\Format\Audio\DefaultAudio">DefaultAudio</abbr></a></small></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
integer
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_getAudioChannels">getAudioChannels</a>()
|
||||
<p>Gets the audio channels value.</p>
|
||||
</td>
|
||||
<td><small>from <a href="../../../FFMpeg/Format/Audio/DefaultAudio.html#method_getAudioChannels"><abbr title="FFMpeg\Format\Audio\DefaultAudio">DefaultAudio</abbr></a></small></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_setAudioChannels">setAudioChannels</a>(integer $channels)
|
||||
<p>Sets the channels value.</p>
|
||||
</td>
|
||||
<td><small>from <a href="../../../FFMpeg/Format/Audio/DefaultAudio.html#method_setAudioChannels"><abbr title="FFMpeg\Format\Audio\DefaultAudio">DefaultAudio</abbr></a></small></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
array
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_createProgressListener">createProgressListener</a>(<a href="../../../FFMpeg/Media/MediaTypeInterface.html"><abbr title="FFMpeg\Media\MediaTypeInterface">MediaTypeInterface</abbr></a> $media, <a href="../../../FFMpeg/FFProbe.html"><abbr title="FFMpeg\FFProbe">FFProbe</abbr></a> $ffprobe, Integer $pass, Integer $total)
|
||||
<p>Creates the progress listener.</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
string
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_getPasses">getPasses</a>()
|
||||
<p>Returns the number of passes.</p>
|
||||
</td>
|
||||
<td><small>from <a href="../../../FFMpeg/Format/Audio/DefaultAudio.html#method_getPasses"><abbr title="FFMpeg\Format\Audio\DefaultAudio">DefaultAudio</abbr></a></small></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
integer
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_getKiloBitrate">getKiloBitrate</a>()
|
||||
<p>Gets the kiloBitrate value.</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_setKiloBitrate">setKiloBitrate</a>(integer $kiloBitrate)
|
||||
<p>Sets the kiloBitrate value.</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
string
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_getVideoCodec">getVideoCodec</a>()
|
||||
<p>Returns the video codec.</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_setVideoCodec">setVideoCodec</a>(string $videoCodec)
|
||||
<p>Sets the video codec, Should be in the available ones, otherwise an exception is thrown.</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
integer
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_getModulus">getModulus</a>()
|
||||
<p>
|
||||
</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h2>Details</h2>
|
||||
|
||||
<h3 id="method_getExtraParams">
|
||||
<div class="location">in <a href="../../../FFMpeg/Format/Audio/DefaultAudio.html#method_getExtraParams"><abbr title="FFMpeg\Format\Audio\DefaultAudio">DefaultAudio</abbr></a> at line 36</div>
|
||||
<code> public <abbr title="FFMpeg\Format\array()">array()</abbr>
|
||||
<strong>getExtraParams</strong>()</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Returns an array of extra parameters to add to ffmpeg commandline.</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><abbr title="FFMpeg\Format\array()">array()</abbr></td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_getAudioCodec">
|
||||
<div class="location">in <a href="../../../FFMpeg/Format/Audio/DefaultAudio.html#method_getAudioCodec"><abbr title="FFMpeg\Format\Audio\DefaultAudio">DefaultAudio</abbr></a> at line 44</div>
|
||||
<code> public string
|
||||
<strong>getAudioCodec</strong>()</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Returns the audio codec.</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td>string</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_setAudioCodec">
|
||||
<div class="location">in <a href="../../../FFMpeg/Format/Audio/DefaultAudio.html#method_setAudioCodec"><abbr title="FFMpeg\Format\Audio\DefaultAudio">DefaultAudio</abbr></a> at line 57</div>
|
||||
<code> public
|
||||
<strong>setAudioCodec</strong>(string $audioCodec)</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Sets the audio codec, Should be in the available ones, otherwise an exception is thrown.</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
<h4>Parameters</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td>string</td>
|
||||
<td>$audioCodec</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
<h4>Exceptions</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="http://php.net/InvalidArgumentException"><abbr title="InvalidArgumentException">InvalidArgumentException</abbr></a></td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_getAudioKiloBitrate">
|
||||
<div class="location">in <a href="../../../FFMpeg/Format/Audio/DefaultAudio.html#method_getAudioKiloBitrate"><abbr title="FFMpeg\Format\Audio\DefaultAudio">DefaultAudio</abbr></a> at line 74</div>
|
||||
<code> public integer
|
||||
<strong>getAudioKiloBitrate</strong>()</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Gets the audio kiloBitrate value.</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td>integer</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_setAudioKiloBitrate">
|
||||
<div class="location">in <a href="../../../FFMpeg/Format/Audio/DefaultAudio.html#method_setAudioKiloBitrate"><abbr title="FFMpeg\Format\Audio\DefaultAudio">DefaultAudio</abbr></a> at line 85</div>
|
||||
<code> public
|
||||
<strong>setAudioKiloBitrate</strong>(integer $kiloBitrate)</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Sets the kiloBitrate value.</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
<h4>Parameters</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td>integer</td>
|
||||
<td>$kiloBitrate</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
<h4>Exceptions</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="http://php.net/InvalidArgumentException"><abbr title="InvalidArgumentException">InvalidArgumentException</abbr></a></td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_getAudioChannels">
|
||||
<div class="location">in <a href="../../../FFMpeg/Format/Audio/DefaultAudio.html#method_getAudioChannels"><abbr title="FFMpeg\Format\Audio\DefaultAudio">DefaultAudio</abbr></a> at line 99</div>
|
||||
<code> public integer
|
||||
<strong>getAudioChannels</strong>()</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Gets the audio channels value.</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td>integer</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_setAudioChannels">
|
||||
<div class="location">in <a href="../../../FFMpeg/Format/Audio/DefaultAudio.html#method_setAudioChannels"><abbr title="FFMpeg\Format\Audio\DefaultAudio">DefaultAudio</abbr></a> at line 110</div>
|
||||
<code> public
|
||||
<strong>setAudioChannels</strong>(integer $channels)</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Sets the channels value.</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
<h4>Parameters</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td>integer</td>
|
||||
<td>$channels</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
<h4>Exceptions</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="http://php.net/InvalidArgumentException"><abbr title="InvalidArgumentException">InvalidArgumentException</abbr></a></td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_createProgressListener">
|
||||
<div class="location">at line 100</div>
|
||||
<code> public array
|
||||
<strong>createProgressListener</strong>(<a href="../../../FFMpeg/Media/MediaTypeInterface.html"><abbr title="FFMpeg\Media\MediaTypeInterface">MediaTypeInterface</abbr></a> $media, <a href="../../../FFMpeg/FFProbe.html"><abbr title="FFMpeg\FFProbe">FFProbe</abbr></a> $ffprobe, Integer $pass, Integer $total)</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Creates the progress listener.</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
<h4>Parameters</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="../../../FFMpeg/Media/MediaTypeInterface.html"><abbr title="FFMpeg\Media\MediaTypeInterface">MediaTypeInterface</abbr></a></td>
|
||||
<td>$media</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><a href="../../../FFMpeg/FFProbe.html"><abbr title="FFMpeg\FFProbe">FFProbe</abbr></a></td>
|
||||
<td>$ffprobe</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Integer</td>
|
||||
<td>$pass</td>
|
||||
<td>The current pas snumber</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Integer</td>
|
||||
<td>$total</td>
|
||||
<td>The total pass number</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td>array</td>
|
||||
<td>An array of listeners</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_getPasses">
|
||||
<div class="location">in <a href="../../../FFMpeg/Format/Audio/DefaultAudio.html#method_getPasses"><abbr title="FFMpeg\Format\Audio\DefaultAudio">DefaultAudio</abbr></a> at line 138</div>
|
||||
<code> public string
|
||||
<strong>getPasses</strong>()</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Returns the number of passes.</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td>string</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_getKiloBitrate">
|
||||
<div class="location">at line 38</div>
|
||||
<code> public integer
|
||||
<strong>getKiloBitrate</strong>()</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Gets the kiloBitrate value.</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td>integer</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_setKiloBitrate">
|
||||
<div class="location">at line 49</div>
|
||||
<code> public
|
||||
<strong>setKiloBitrate</strong>(integer $kiloBitrate)</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Sets the kiloBitrate value.</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
<h4>Parameters</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td>integer</td>
|
||||
<td>$kiloBitrate</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
<h4>Exceptions</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="http://php.net/InvalidArgumentException"><abbr title="InvalidArgumentException">InvalidArgumentException</abbr></a></td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_getVideoCodec">
|
||||
<div class="location">at line 63</div>
|
||||
<code> public string
|
||||
<strong>getVideoCodec</strong>()</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Returns the video codec.</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td>string</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_setVideoCodec">
|
||||
<div class="location">at line 75</div>
|
||||
<code> public
|
||||
<strong>setVideoCodec</strong>(string $videoCodec)</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Sets the video codec, Should be in the available ones, otherwise an exception is thrown.</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
<h4>Parameters</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td>string</td>
|
||||
<td>$videoCodec</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
<h4>Exceptions</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="http://php.net/InvalidArgumentException"><abbr title="InvalidArgumentException">InvalidArgumentException</abbr></a></td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_getModulus">
|
||||
<div class="location">at line 92</div>
|
||||
<code> public integer
|
||||
<strong>getModulus</strong>()</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>
|
||||
</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td>integer</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
</div>
|
||||
<div id="footer">
|
||||
Generated by <a href="http://sami.sensiolabs.org/" target="_top">Sami, the API Documentation Generator</a>.
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
|
|
@ -1,791 +0,0 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<meta name="robots" content="index, follow, all" />
|
||||
<title>FFMpeg\Format\Video\Ogg | PHP-FFMpeg API</title>
|
||||
<link rel="stylesheet" type="text/css" href="../../../stylesheet.css">
|
||||
</head>
|
||||
<body id="class">
|
||||
<div class="header">
|
||||
<ul>
|
||||
<li><a href="../../../classes.html">Classes</a></li>
|
||||
<li><a href="../../../namespaces.html">Namespaces</a></li>
|
||||
<li><a href="../../../interfaces.html">Interfaces</a></li>
|
||||
<li><a href="../../../traits.html">Traits</a></li>
|
||||
<li><a href="../../../doc-index.html">Index</a></li>
|
||||
|
||||
</ul>
|
||||
|
||||
<div id="title">PHP-FFMpeg API</div>
|
||||
|
||||
<div class="type">Class</div>
|
||||
<h1><a href="../../../FFMpeg/Format/Video.html">FFMpeg\Format\Video</a>\Ogg</h1>
|
||||
</div>
|
||||
<div class="content">
|
||||
<p> class
|
||||
<strong>Ogg</strong> extends <a href="../../../FFMpeg/Format/Video/DefaultVideo.html"><abbr title="FFMpeg\Format\Video\DefaultVideo">DefaultVideo</abbr></a></p>
|
||||
|
||||
<div class="description">
|
||||
<p>The Ogg video format</p>
|
||||
<p>
|
||||
</p>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<h2>Methods</h2>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td class="type">
|
||||
<abbr title="FFMpeg\Format\array()">array()</abbr>
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_getExtraParams">getExtraParams</a>()
|
||||
<p>Returns an array of extra parameters to add to ffmpeg commandline.</p>
|
||||
</td>
|
||||
<td><small>from <a href="../../../FFMpeg/Format/Audio/DefaultAudio.html#method_getExtraParams"><abbr title="FFMpeg\Format\Audio\DefaultAudio">DefaultAudio</abbr></a></small></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
string
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_getAudioCodec">getAudioCodec</a>()
|
||||
<p>Returns the audio codec.</p>
|
||||
</td>
|
||||
<td><small>from <a href="../../../FFMpeg/Format/Audio/DefaultAudio.html#method_getAudioCodec"><abbr title="FFMpeg\Format\Audio\DefaultAudio">DefaultAudio</abbr></a></small></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_setAudioCodec">setAudioCodec</a>(string $audioCodec)
|
||||
<p>Sets the audio codec, Should be in the available ones, otherwise an exception is thrown.</p>
|
||||
</td>
|
||||
<td><small>from <a href="../../../FFMpeg/Format/Audio/DefaultAudio.html#method_setAudioCodec"><abbr title="FFMpeg\Format\Audio\DefaultAudio">DefaultAudio</abbr></a></small></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
integer
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_getAudioKiloBitrate">getAudioKiloBitrate</a>()
|
||||
<p>Gets the audio kiloBitrate value.</p>
|
||||
</td>
|
||||
<td><small>from <a href="../../../FFMpeg/Format/Audio/DefaultAudio.html#method_getAudioKiloBitrate"><abbr title="FFMpeg\Format\Audio\DefaultAudio">DefaultAudio</abbr></a></small></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_setAudioKiloBitrate">setAudioKiloBitrate</a>(integer $kiloBitrate)
|
||||
<p>Sets the kiloBitrate value.</p>
|
||||
</td>
|
||||
<td><small>from <a href="../../../FFMpeg/Format/Audio/DefaultAudio.html#method_setAudioKiloBitrate"><abbr title="FFMpeg\Format\Audio\DefaultAudio">DefaultAudio</abbr></a></small></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
integer
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_getAudioChannels">getAudioChannels</a>()
|
||||
<p>Gets the audio channels value.</p>
|
||||
</td>
|
||||
<td><small>from <a href="../../../FFMpeg/Format/Audio/DefaultAudio.html#method_getAudioChannels"><abbr title="FFMpeg\Format\Audio\DefaultAudio">DefaultAudio</abbr></a></small></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_setAudioChannels">setAudioChannels</a>(integer $channels)
|
||||
<p>Sets the channels value.</p>
|
||||
</td>
|
||||
<td><small>from <a href="../../../FFMpeg/Format/Audio/DefaultAudio.html#method_setAudioChannels"><abbr title="FFMpeg\Format\Audio\DefaultAudio">DefaultAudio</abbr></a></small></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
array
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_createProgressListener">createProgressListener</a>(<a href="../../../FFMpeg/Media/MediaTypeInterface.html"><abbr title="FFMpeg\Media\MediaTypeInterface">MediaTypeInterface</abbr></a> $media, <a href="../../../FFMpeg/FFProbe.html"><abbr title="FFMpeg\FFProbe">FFProbe</abbr></a> $ffprobe, Integer $pass, Integer $total)
|
||||
<p>Creates the progress listener.</p>
|
||||
</td>
|
||||
<td><small>from <a href="../../../FFMpeg/Format/Video/DefaultVideo.html#method_createProgressListener"><abbr title="FFMpeg\Format\Video\DefaultVideo">DefaultVideo</abbr></a></small></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
string
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_getPasses">getPasses</a>()
|
||||
<p>Returns the number of passes.</p>
|
||||
</td>
|
||||
<td><small>from <a href="../../../FFMpeg/Format/Audio/DefaultAudio.html#method_getPasses"><abbr title="FFMpeg\Format\Audio\DefaultAudio">DefaultAudio</abbr></a></small></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
integer
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_getKiloBitrate">getKiloBitrate</a>()
|
||||
<p>Gets the kiloBitrate value.</p>
|
||||
</td>
|
||||
<td><small>from <a href="../../../FFMpeg/Format/Video/DefaultVideo.html#method_getKiloBitrate"><abbr title="FFMpeg\Format\Video\DefaultVideo">DefaultVideo</abbr></a></small></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_setKiloBitrate">setKiloBitrate</a>(integer $kiloBitrate)
|
||||
<p>Sets the kiloBitrate value.</p>
|
||||
</td>
|
||||
<td><small>from <a href="../../../FFMpeg/Format/Video/DefaultVideo.html#method_setKiloBitrate"><abbr title="FFMpeg\Format\Video\DefaultVideo">DefaultVideo</abbr></a></small></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
string
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_getVideoCodec">getVideoCodec</a>()
|
||||
<p>Returns the video codec.</p>
|
||||
</td>
|
||||
<td><small>from <a href="../../../FFMpeg/Format/Video/DefaultVideo.html#method_getVideoCodec"><abbr title="FFMpeg\Format\Video\DefaultVideo">DefaultVideo</abbr></a></small></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_setVideoCodec">setVideoCodec</a>(string $videoCodec)
|
||||
<p>Sets the video codec, Should be in the available ones, otherwise an exception is thrown.</p>
|
||||
</td>
|
||||
<td><small>from <a href="../../../FFMpeg/Format/Video/DefaultVideo.html#method_setVideoCodec"><abbr title="FFMpeg\Format\Video\DefaultVideo">DefaultVideo</abbr></a></small></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
integer
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_getModulus">getModulus</a>()
|
||||
<p>
|
||||
</p>
|
||||
</td>
|
||||
<td><small>from <a href="../../../FFMpeg/Format/Video/DefaultVideo.html#method_getModulus"><abbr title="FFMpeg\Format\Video\DefaultVideo">DefaultVideo</abbr></a></small></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method___construct">__construct</a>($audioCodec = 'libvorbis', $videoCodec = 'libtheora')
|
||||
<p>
|
||||
</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
Boolean
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_supportBFrames">supportBFrames</a>()
|
||||
<p>Returns true if the current format supports B-Frames.</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
array
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_getAvailableAudioCodecs">getAvailableAudioCodecs</a>()
|
||||
<p>Returns the list of available audio codecs for this format.</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
array
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_getAvailableVideoCodecs">getAvailableVideoCodecs</a>()
|
||||
<p>Returns the list of available video codecs for this format.</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h2>Details</h2>
|
||||
|
||||
<h3 id="method_getExtraParams">
|
||||
<div class="location">in <a href="../../../FFMpeg/Format/Audio/DefaultAudio.html#method_getExtraParams"><abbr title="FFMpeg\Format\Audio\DefaultAudio">DefaultAudio</abbr></a> at line 36</div>
|
||||
<code> public <abbr title="FFMpeg\Format\array()">array()</abbr>
|
||||
<strong>getExtraParams</strong>()</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Returns an array of extra parameters to add to ffmpeg commandline.</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><abbr title="FFMpeg\Format\array()">array()</abbr></td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_getAudioCodec">
|
||||
<div class="location">in <a href="../../../FFMpeg/Format/Audio/DefaultAudio.html#method_getAudioCodec"><abbr title="FFMpeg\Format\Audio\DefaultAudio">DefaultAudio</abbr></a> at line 44</div>
|
||||
<code> public string
|
||||
<strong>getAudioCodec</strong>()</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Returns the audio codec.</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td>string</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_setAudioCodec">
|
||||
<div class="location">in <a href="../../../FFMpeg/Format/Audio/DefaultAudio.html#method_setAudioCodec"><abbr title="FFMpeg\Format\Audio\DefaultAudio">DefaultAudio</abbr></a> at line 57</div>
|
||||
<code> public
|
||||
<strong>setAudioCodec</strong>(string $audioCodec)</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Sets the audio codec, Should be in the available ones, otherwise an exception is thrown.</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
<h4>Parameters</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td>string</td>
|
||||
<td>$audioCodec</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
<h4>Exceptions</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="http://php.net/InvalidArgumentException"><abbr title="InvalidArgumentException">InvalidArgumentException</abbr></a></td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_getAudioKiloBitrate">
|
||||
<div class="location">in <a href="../../../FFMpeg/Format/Audio/DefaultAudio.html#method_getAudioKiloBitrate"><abbr title="FFMpeg\Format\Audio\DefaultAudio">DefaultAudio</abbr></a> at line 74</div>
|
||||
<code> public integer
|
||||
<strong>getAudioKiloBitrate</strong>()</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Gets the audio kiloBitrate value.</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td>integer</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_setAudioKiloBitrate">
|
||||
<div class="location">in <a href="../../../FFMpeg/Format/Audio/DefaultAudio.html#method_setAudioKiloBitrate"><abbr title="FFMpeg\Format\Audio\DefaultAudio">DefaultAudio</abbr></a> at line 85</div>
|
||||
<code> public
|
||||
<strong>setAudioKiloBitrate</strong>(integer $kiloBitrate)</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Sets the kiloBitrate value.</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
<h4>Parameters</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td>integer</td>
|
||||
<td>$kiloBitrate</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
<h4>Exceptions</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="http://php.net/InvalidArgumentException"><abbr title="InvalidArgumentException">InvalidArgumentException</abbr></a></td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_getAudioChannels">
|
||||
<div class="location">in <a href="../../../FFMpeg/Format/Audio/DefaultAudio.html#method_getAudioChannels"><abbr title="FFMpeg\Format\Audio\DefaultAudio">DefaultAudio</abbr></a> at line 99</div>
|
||||
<code> public integer
|
||||
<strong>getAudioChannels</strong>()</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Gets the audio channels value.</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td>integer</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_setAudioChannels">
|
||||
<div class="location">in <a href="../../../FFMpeg/Format/Audio/DefaultAudio.html#method_setAudioChannels"><abbr title="FFMpeg\Format\Audio\DefaultAudio">DefaultAudio</abbr></a> at line 110</div>
|
||||
<code> public
|
||||
<strong>setAudioChannels</strong>(integer $channels)</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Sets the channels value.</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
<h4>Parameters</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td>integer</td>
|
||||
<td>$channels</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
<h4>Exceptions</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="http://php.net/InvalidArgumentException"><abbr title="InvalidArgumentException">InvalidArgumentException</abbr></a></td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_createProgressListener">
|
||||
<div class="location">in <a href="../../../FFMpeg/Format/Video/DefaultVideo.html#method_createProgressListener"><abbr title="FFMpeg\Format\Video\DefaultVideo">DefaultVideo</abbr></a> at line 100</div>
|
||||
<code> public array
|
||||
<strong>createProgressListener</strong>(<a href="../../../FFMpeg/Media/MediaTypeInterface.html"><abbr title="FFMpeg\Media\MediaTypeInterface">MediaTypeInterface</abbr></a> $media, <a href="../../../FFMpeg/FFProbe.html"><abbr title="FFMpeg\FFProbe">FFProbe</abbr></a> $ffprobe, Integer $pass, Integer $total)</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Creates the progress listener.</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
<h4>Parameters</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="../../../FFMpeg/Media/MediaTypeInterface.html"><abbr title="FFMpeg\Media\MediaTypeInterface">MediaTypeInterface</abbr></a></td>
|
||||
<td>$media</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><a href="../../../FFMpeg/FFProbe.html"><abbr title="FFMpeg\FFProbe">FFProbe</abbr></a></td>
|
||||
<td>$ffprobe</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Integer</td>
|
||||
<td>$pass</td>
|
||||
<td>The current pas snumber</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Integer</td>
|
||||
<td>$total</td>
|
||||
<td>The total pass number</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td>array</td>
|
||||
<td>An array of listeners</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_getPasses">
|
||||
<div class="location">in <a href="../../../FFMpeg/Format/Audio/DefaultAudio.html#method_getPasses"><abbr title="FFMpeg\Format\Audio\DefaultAudio">DefaultAudio</abbr></a> at line 138</div>
|
||||
<code> public string
|
||||
<strong>getPasses</strong>()</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Returns the number of passes.</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td>string</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_getKiloBitrate">
|
||||
<div class="location">in <a href="../../../FFMpeg/Format/Video/DefaultVideo.html#method_getKiloBitrate"><abbr title="FFMpeg\Format\Video\DefaultVideo">DefaultVideo</abbr></a> at line 38</div>
|
||||
<code> public integer
|
||||
<strong>getKiloBitrate</strong>()</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Gets the kiloBitrate value.</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td>integer</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_setKiloBitrate">
|
||||
<div class="location">in <a href="../../../FFMpeg/Format/Video/DefaultVideo.html#method_setKiloBitrate"><abbr title="FFMpeg\Format\Video\DefaultVideo">DefaultVideo</abbr></a> at line 49</div>
|
||||
<code> public
|
||||
<strong>setKiloBitrate</strong>(integer $kiloBitrate)</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Sets the kiloBitrate value.</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
<h4>Parameters</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td>integer</td>
|
||||
<td>$kiloBitrate</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
<h4>Exceptions</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="http://php.net/InvalidArgumentException"><abbr title="InvalidArgumentException">InvalidArgumentException</abbr></a></td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_getVideoCodec">
|
||||
<div class="location">in <a href="../../../FFMpeg/Format/Video/DefaultVideo.html#method_getVideoCodec"><abbr title="FFMpeg\Format\Video\DefaultVideo">DefaultVideo</abbr></a> at line 63</div>
|
||||
<code> public string
|
||||
<strong>getVideoCodec</strong>()</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Returns the video codec.</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td>string</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_setVideoCodec">
|
||||
<div class="location">in <a href="../../../FFMpeg/Format/Video/DefaultVideo.html#method_setVideoCodec"><abbr title="FFMpeg\Format\Video\DefaultVideo">DefaultVideo</abbr></a> at line 75</div>
|
||||
<code> public
|
||||
<strong>setVideoCodec</strong>(string $videoCodec)</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Sets the video codec, Should be in the available ones, otherwise an exception is thrown.</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
<h4>Parameters</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td>string</td>
|
||||
<td>$videoCodec</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
<h4>Exceptions</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="http://php.net/InvalidArgumentException"><abbr title="InvalidArgumentException">InvalidArgumentException</abbr></a></td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_getModulus">
|
||||
<div class="location">in <a href="../../../FFMpeg/Format/Video/DefaultVideo.html#method_getModulus"><abbr title="FFMpeg\Format\Video\DefaultVideo">DefaultVideo</abbr></a> at line 92</div>
|
||||
<code> public integer
|
||||
<strong>getModulus</strong>()</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>
|
||||
</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td>integer</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method___construct">
|
||||
<div class="location">at line 19</div>
|
||||
<code> public
|
||||
<strong>__construct</strong>($audioCodec = 'libvorbis', $videoCodec = 'libtheora')</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>
|
||||
</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
<h4>Parameters</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td></td>
|
||||
<td>$audioCodec</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td></td>
|
||||
<td>$videoCodec</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_supportBFrames">
|
||||
<div class="location">at line 29</div>
|
||||
<code> public Boolean
|
||||
<strong>supportBFrames</strong>()</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Returns true if the current format supports B-Frames.</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td>Boolean</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_getAvailableAudioCodecs">
|
||||
<div class="location">at line 37</div>
|
||||
<code> public array
|
||||
<strong>getAvailableAudioCodecs</strong>()</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Returns the list of available audio codecs for this format.</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td>array</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_getAvailableVideoCodecs">
|
||||
<div class="location">at line 45</div>
|
||||
<code> public array
|
||||
<strong>getAvailableVideoCodecs</strong>()</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Returns the list of available video codecs for this format.</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td>array</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
</div>
|
||||
<div id="footer">
|
||||
Generated by <a href="http://sami.sensiolabs.org/" target="_top">Sami, the API Documentation Generator</a>.
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
|
|
@ -1,791 +0,0 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<meta name="robots" content="index, follow, all" />
|
||||
<title>FFMpeg\Format\Video\WMV | PHP-FFMpeg API</title>
|
||||
<link rel="stylesheet" type="text/css" href="../../../stylesheet.css">
|
||||
</head>
|
||||
<body id="class">
|
||||
<div class="header">
|
||||
<ul>
|
||||
<li><a href="../../../classes.html">Classes</a></li>
|
||||
<li><a href="../../../namespaces.html">Namespaces</a></li>
|
||||
<li><a href="../../../interfaces.html">Interfaces</a></li>
|
||||
<li><a href="../../../traits.html">Traits</a></li>
|
||||
<li><a href="../../../doc-index.html">Index</a></li>
|
||||
|
||||
</ul>
|
||||
|
||||
<div id="title">PHP-FFMpeg API</div>
|
||||
|
||||
<div class="type">Class</div>
|
||||
<h1><a href="../../../FFMpeg/Format/Video.html">FFMpeg\Format\Video</a>\WMV</h1>
|
||||
</div>
|
||||
<div class="content">
|
||||
<p> class
|
||||
<strong>WMV</strong> extends <a href="../../../FFMpeg/Format/Video/DefaultVideo.html"><abbr title="FFMpeg\Format\Video\DefaultVideo">DefaultVideo</abbr></a></p>
|
||||
|
||||
<div class="description">
|
||||
<p>The WMV video format</p>
|
||||
<p>
|
||||
</p>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<h2>Methods</h2>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td class="type">
|
||||
<abbr title="FFMpeg\Format\array()">array()</abbr>
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_getExtraParams">getExtraParams</a>()
|
||||
<p>Returns an array of extra parameters to add to ffmpeg commandline.</p>
|
||||
</td>
|
||||
<td><small>from <a href="../../../FFMpeg/Format/Audio/DefaultAudio.html#method_getExtraParams"><abbr title="FFMpeg\Format\Audio\DefaultAudio">DefaultAudio</abbr></a></small></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
string
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_getAudioCodec">getAudioCodec</a>()
|
||||
<p>Returns the audio codec.</p>
|
||||
</td>
|
||||
<td><small>from <a href="../../../FFMpeg/Format/Audio/DefaultAudio.html#method_getAudioCodec"><abbr title="FFMpeg\Format\Audio\DefaultAudio">DefaultAudio</abbr></a></small></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_setAudioCodec">setAudioCodec</a>(string $audioCodec)
|
||||
<p>Sets the audio codec, Should be in the available ones, otherwise an exception is thrown.</p>
|
||||
</td>
|
||||
<td><small>from <a href="../../../FFMpeg/Format/Audio/DefaultAudio.html#method_setAudioCodec"><abbr title="FFMpeg\Format\Audio\DefaultAudio">DefaultAudio</abbr></a></small></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
integer
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_getAudioKiloBitrate">getAudioKiloBitrate</a>()
|
||||
<p>Gets the audio kiloBitrate value.</p>
|
||||
</td>
|
||||
<td><small>from <a href="../../../FFMpeg/Format/Audio/DefaultAudio.html#method_getAudioKiloBitrate"><abbr title="FFMpeg\Format\Audio\DefaultAudio">DefaultAudio</abbr></a></small></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_setAudioKiloBitrate">setAudioKiloBitrate</a>(integer $kiloBitrate)
|
||||
<p>Sets the kiloBitrate value.</p>
|
||||
</td>
|
||||
<td><small>from <a href="../../../FFMpeg/Format/Audio/DefaultAudio.html#method_setAudioKiloBitrate"><abbr title="FFMpeg\Format\Audio\DefaultAudio">DefaultAudio</abbr></a></small></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
integer
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_getAudioChannels">getAudioChannels</a>()
|
||||
<p>Gets the audio channels value.</p>
|
||||
</td>
|
||||
<td><small>from <a href="../../../FFMpeg/Format/Audio/DefaultAudio.html#method_getAudioChannels"><abbr title="FFMpeg\Format\Audio\DefaultAudio">DefaultAudio</abbr></a></small></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_setAudioChannels">setAudioChannels</a>(integer $channels)
|
||||
<p>Sets the channels value.</p>
|
||||
</td>
|
||||
<td><small>from <a href="../../../FFMpeg/Format/Audio/DefaultAudio.html#method_setAudioChannels"><abbr title="FFMpeg\Format\Audio\DefaultAudio">DefaultAudio</abbr></a></small></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
array
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_createProgressListener">createProgressListener</a>(<a href="../../../FFMpeg/Media/MediaTypeInterface.html"><abbr title="FFMpeg\Media\MediaTypeInterface">MediaTypeInterface</abbr></a> $media, <a href="../../../FFMpeg/FFProbe.html"><abbr title="FFMpeg\FFProbe">FFProbe</abbr></a> $ffprobe, Integer $pass, Integer $total)
|
||||
<p>Creates the progress listener.</p>
|
||||
</td>
|
||||
<td><small>from <a href="../../../FFMpeg/Format/Video/DefaultVideo.html#method_createProgressListener"><abbr title="FFMpeg\Format\Video\DefaultVideo">DefaultVideo</abbr></a></small></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
string
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_getPasses">getPasses</a>()
|
||||
<p>Returns the number of passes.</p>
|
||||
</td>
|
||||
<td><small>from <a href="../../../FFMpeg/Format/Audio/DefaultAudio.html#method_getPasses"><abbr title="FFMpeg\Format\Audio\DefaultAudio">DefaultAudio</abbr></a></small></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
integer
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_getKiloBitrate">getKiloBitrate</a>()
|
||||
<p>Gets the kiloBitrate value.</p>
|
||||
</td>
|
||||
<td><small>from <a href="../../../FFMpeg/Format/Video/DefaultVideo.html#method_getKiloBitrate"><abbr title="FFMpeg\Format\Video\DefaultVideo">DefaultVideo</abbr></a></small></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_setKiloBitrate">setKiloBitrate</a>(integer $kiloBitrate)
|
||||
<p>Sets the kiloBitrate value.</p>
|
||||
</td>
|
||||
<td><small>from <a href="../../../FFMpeg/Format/Video/DefaultVideo.html#method_setKiloBitrate"><abbr title="FFMpeg\Format\Video\DefaultVideo">DefaultVideo</abbr></a></small></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
string
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_getVideoCodec">getVideoCodec</a>()
|
||||
<p>Returns the video codec.</p>
|
||||
</td>
|
||||
<td><small>from <a href="../../../FFMpeg/Format/Video/DefaultVideo.html#method_getVideoCodec"><abbr title="FFMpeg\Format\Video\DefaultVideo">DefaultVideo</abbr></a></small></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_setVideoCodec">setVideoCodec</a>(string $videoCodec)
|
||||
<p>Sets the video codec, Should be in the available ones, otherwise an exception is thrown.</p>
|
||||
</td>
|
||||
<td><small>from <a href="../../../FFMpeg/Format/Video/DefaultVideo.html#method_setVideoCodec"><abbr title="FFMpeg\Format\Video\DefaultVideo">DefaultVideo</abbr></a></small></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
integer
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_getModulus">getModulus</a>()
|
||||
<p>
|
||||
</p>
|
||||
</td>
|
||||
<td><small>from <a href="../../../FFMpeg/Format/Video/DefaultVideo.html#method_getModulus"><abbr title="FFMpeg\Format\Video\DefaultVideo">DefaultVideo</abbr></a></small></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method___construct">__construct</a>($audioCodec = 'wmav2', $videoCodec = 'wmv2')
|
||||
<p>
|
||||
</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
Boolean
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_supportBFrames">supportBFrames</a>()
|
||||
<p>Returns true if the current format supports B-Frames.</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
array
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_getAvailableAudioCodecs">getAvailableAudioCodecs</a>()
|
||||
<p>Returns the list of available audio codecs for this format.</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
array
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_getAvailableVideoCodecs">getAvailableVideoCodecs</a>()
|
||||
<p>Returns the list of available video codecs for this format.</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h2>Details</h2>
|
||||
|
||||
<h3 id="method_getExtraParams">
|
||||
<div class="location">in <a href="../../../FFMpeg/Format/Audio/DefaultAudio.html#method_getExtraParams"><abbr title="FFMpeg\Format\Audio\DefaultAudio">DefaultAudio</abbr></a> at line 36</div>
|
||||
<code> public <abbr title="FFMpeg\Format\array()">array()</abbr>
|
||||
<strong>getExtraParams</strong>()</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Returns an array of extra parameters to add to ffmpeg commandline.</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><abbr title="FFMpeg\Format\array()">array()</abbr></td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_getAudioCodec">
|
||||
<div class="location">in <a href="../../../FFMpeg/Format/Audio/DefaultAudio.html#method_getAudioCodec"><abbr title="FFMpeg\Format\Audio\DefaultAudio">DefaultAudio</abbr></a> at line 44</div>
|
||||
<code> public string
|
||||
<strong>getAudioCodec</strong>()</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Returns the audio codec.</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td>string</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_setAudioCodec">
|
||||
<div class="location">in <a href="../../../FFMpeg/Format/Audio/DefaultAudio.html#method_setAudioCodec"><abbr title="FFMpeg\Format\Audio\DefaultAudio">DefaultAudio</abbr></a> at line 57</div>
|
||||
<code> public
|
||||
<strong>setAudioCodec</strong>(string $audioCodec)</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Sets the audio codec, Should be in the available ones, otherwise an exception is thrown.</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
<h4>Parameters</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td>string</td>
|
||||
<td>$audioCodec</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
<h4>Exceptions</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="http://php.net/InvalidArgumentException"><abbr title="InvalidArgumentException">InvalidArgumentException</abbr></a></td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_getAudioKiloBitrate">
|
||||
<div class="location">in <a href="../../../FFMpeg/Format/Audio/DefaultAudio.html#method_getAudioKiloBitrate"><abbr title="FFMpeg\Format\Audio\DefaultAudio">DefaultAudio</abbr></a> at line 74</div>
|
||||
<code> public integer
|
||||
<strong>getAudioKiloBitrate</strong>()</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Gets the audio kiloBitrate value.</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td>integer</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_setAudioKiloBitrate">
|
||||
<div class="location">in <a href="../../../FFMpeg/Format/Audio/DefaultAudio.html#method_setAudioKiloBitrate"><abbr title="FFMpeg\Format\Audio\DefaultAudio">DefaultAudio</abbr></a> at line 85</div>
|
||||
<code> public
|
||||
<strong>setAudioKiloBitrate</strong>(integer $kiloBitrate)</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Sets the kiloBitrate value.</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
<h4>Parameters</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td>integer</td>
|
||||
<td>$kiloBitrate</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
<h4>Exceptions</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="http://php.net/InvalidArgumentException"><abbr title="InvalidArgumentException">InvalidArgumentException</abbr></a></td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_getAudioChannels">
|
||||
<div class="location">in <a href="../../../FFMpeg/Format/Audio/DefaultAudio.html#method_getAudioChannels"><abbr title="FFMpeg\Format\Audio\DefaultAudio">DefaultAudio</abbr></a> at line 99</div>
|
||||
<code> public integer
|
||||
<strong>getAudioChannels</strong>()</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Gets the audio channels value.</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td>integer</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_setAudioChannels">
|
||||
<div class="location">in <a href="../../../FFMpeg/Format/Audio/DefaultAudio.html#method_setAudioChannels"><abbr title="FFMpeg\Format\Audio\DefaultAudio">DefaultAudio</abbr></a> at line 110</div>
|
||||
<code> public
|
||||
<strong>setAudioChannels</strong>(integer $channels)</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Sets the channels value.</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
<h4>Parameters</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td>integer</td>
|
||||
<td>$channels</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
<h4>Exceptions</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="http://php.net/InvalidArgumentException"><abbr title="InvalidArgumentException">InvalidArgumentException</abbr></a></td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_createProgressListener">
|
||||
<div class="location">in <a href="../../../FFMpeg/Format/Video/DefaultVideo.html#method_createProgressListener"><abbr title="FFMpeg\Format\Video\DefaultVideo">DefaultVideo</abbr></a> at line 100</div>
|
||||
<code> public array
|
||||
<strong>createProgressListener</strong>(<a href="../../../FFMpeg/Media/MediaTypeInterface.html"><abbr title="FFMpeg\Media\MediaTypeInterface">MediaTypeInterface</abbr></a> $media, <a href="../../../FFMpeg/FFProbe.html"><abbr title="FFMpeg\FFProbe">FFProbe</abbr></a> $ffprobe, Integer $pass, Integer $total)</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Creates the progress listener.</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
<h4>Parameters</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="../../../FFMpeg/Media/MediaTypeInterface.html"><abbr title="FFMpeg\Media\MediaTypeInterface">MediaTypeInterface</abbr></a></td>
|
||||
<td>$media</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><a href="../../../FFMpeg/FFProbe.html"><abbr title="FFMpeg\FFProbe">FFProbe</abbr></a></td>
|
||||
<td>$ffprobe</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Integer</td>
|
||||
<td>$pass</td>
|
||||
<td>The current pas snumber</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Integer</td>
|
||||
<td>$total</td>
|
||||
<td>The total pass number</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td>array</td>
|
||||
<td>An array of listeners</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_getPasses">
|
||||
<div class="location">in <a href="../../../FFMpeg/Format/Audio/DefaultAudio.html#method_getPasses"><abbr title="FFMpeg\Format\Audio\DefaultAudio">DefaultAudio</abbr></a> at line 138</div>
|
||||
<code> public string
|
||||
<strong>getPasses</strong>()</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Returns the number of passes.</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td>string</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_getKiloBitrate">
|
||||
<div class="location">in <a href="../../../FFMpeg/Format/Video/DefaultVideo.html#method_getKiloBitrate"><abbr title="FFMpeg\Format\Video\DefaultVideo">DefaultVideo</abbr></a> at line 38</div>
|
||||
<code> public integer
|
||||
<strong>getKiloBitrate</strong>()</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Gets the kiloBitrate value.</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td>integer</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_setKiloBitrate">
|
||||
<div class="location">in <a href="../../../FFMpeg/Format/Video/DefaultVideo.html#method_setKiloBitrate"><abbr title="FFMpeg\Format\Video\DefaultVideo">DefaultVideo</abbr></a> at line 49</div>
|
||||
<code> public
|
||||
<strong>setKiloBitrate</strong>(integer $kiloBitrate)</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Sets the kiloBitrate value.</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
<h4>Parameters</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td>integer</td>
|
||||
<td>$kiloBitrate</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
<h4>Exceptions</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="http://php.net/InvalidArgumentException"><abbr title="InvalidArgumentException">InvalidArgumentException</abbr></a></td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_getVideoCodec">
|
||||
<div class="location">in <a href="../../../FFMpeg/Format/Video/DefaultVideo.html#method_getVideoCodec"><abbr title="FFMpeg\Format\Video\DefaultVideo">DefaultVideo</abbr></a> at line 63</div>
|
||||
<code> public string
|
||||
<strong>getVideoCodec</strong>()</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Returns the video codec.</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td>string</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_setVideoCodec">
|
||||
<div class="location">in <a href="../../../FFMpeg/Format/Video/DefaultVideo.html#method_setVideoCodec"><abbr title="FFMpeg\Format\Video\DefaultVideo">DefaultVideo</abbr></a> at line 75</div>
|
||||
<code> public
|
||||
<strong>setVideoCodec</strong>(string $videoCodec)</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Sets the video codec, Should be in the available ones, otherwise an exception is thrown.</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
<h4>Parameters</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td>string</td>
|
||||
<td>$videoCodec</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
<h4>Exceptions</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="http://php.net/InvalidArgumentException"><abbr title="InvalidArgumentException">InvalidArgumentException</abbr></a></td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_getModulus">
|
||||
<div class="location">in <a href="../../../FFMpeg/Format/Video/DefaultVideo.html#method_getModulus"><abbr title="FFMpeg\Format\Video\DefaultVideo">DefaultVideo</abbr></a> at line 92</div>
|
||||
<code> public integer
|
||||
<strong>getModulus</strong>()</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>
|
||||
</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td>integer</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method___construct">
|
||||
<div class="location">at line 19</div>
|
||||
<code> public
|
||||
<strong>__construct</strong>($audioCodec = 'wmav2', $videoCodec = 'wmv2')</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>
|
||||
</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
<h4>Parameters</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td></td>
|
||||
<td>$audioCodec</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td></td>
|
||||
<td>$videoCodec</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_supportBFrames">
|
||||
<div class="location">at line 29</div>
|
||||
<code> public Boolean
|
||||
<strong>supportBFrames</strong>()</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Returns true if the current format supports B-Frames.</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td>Boolean</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_getAvailableAudioCodecs">
|
||||
<div class="location">at line 37</div>
|
||||
<code> public array
|
||||
<strong>getAvailableAudioCodecs</strong>()</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Returns the list of available audio codecs for this format.</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td>array</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_getAvailableVideoCodecs">
|
||||
<div class="location">at line 45</div>
|
||||
<code> public array
|
||||
<strong>getAvailableVideoCodecs</strong>()</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Returns the list of available video codecs for this format.</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td>array</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
</div>
|
||||
<div id="footer">
|
||||
Generated by <a href="http://sami.sensiolabs.org/" target="_top">Sami, the API Documentation Generator</a>.
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
|
|
@ -1,791 +0,0 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<meta name="robots" content="index, follow, all" />
|
||||
<title>FFMpeg\Format\Video\WMV3 | PHP-FFMpeg API</title>
|
||||
<link rel="stylesheet" type="text/css" href="../../../stylesheet.css">
|
||||
</head>
|
||||
<body id="class">
|
||||
<div class="header">
|
||||
<ul>
|
||||
<li><a href="../../../classes.html">Classes</a></li>
|
||||
<li><a href="../../../namespaces.html">Namespaces</a></li>
|
||||
<li><a href="../../../interfaces.html">Interfaces</a></li>
|
||||
<li><a href="../../../traits.html">Traits</a></li>
|
||||
<li><a href="../../../doc-index.html">Index</a></li>
|
||||
|
||||
</ul>
|
||||
|
||||
<div id="title">PHP-FFMpeg API</div>
|
||||
|
||||
<div class="type">Class</div>
|
||||
<h1><a href="../../../FFMpeg/Format/Video.html">FFMpeg\Format\Video</a>\WMV3</h1>
|
||||
</div>
|
||||
<div class="content">
|
||||
<p> class
|
||||
<strong>WMV3</strong> extends <a href="../../../FFMpeg/Format/Video/DefaultVideo.html"><abbr title="FFMpeg\Format\Video\DefaultVideo">DefaultVideo</abbr></a></p>
|
||||
|
||||
<div class="description">
|
||||
<p>The WMV video format</p>
|
||||
<p>
|
||||
</p>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<h2>Methods</h2>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td class="type">
|
||||
<abbr title="FFMpeg\Format\array()">array()</abbr>
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_getExtraParams">getExtraParams</a>()
|
||||
<p>Returns an array of extra parameters to add to ffmpeg commandline.</p>
|
||||
</td>
|
||||
<td><small>from <a href="../../../FFMpeg/Format/Audio/DefaultAudio.html#method_getExtraParams"><abbr title="FFMpeg\Format\Audio\DefaultAudio">DefaultAudio</abbr></a></small></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
string
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_getAudioCodec">getAudioCodec</a>()
|
||||
<p>Returns the audio codec.</p>
|
||||
</td>
|
||||
<td><small>from <a href="../../../FFMpeg/Format/Audio/DefaultAudio.html#method_getAudioCodec"><abbr title="FFMpeg\Format\Audio\DefaultAudio">DefaultAudio</abbr></a></small></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_setAudioCodec">setAudioCodec</a>(string $audioCodec)
|
||||
<p>Sets the audio codec, Should be in the available ones, otherwise an exception is thrown.</p>
|
||||
</td>
|
||||
<td><small>from <a href="../../../FFMpeg/Format/Audio/DefaultAudio.html#method_setAudioCodec"><abbr title="FFMpeg\Format\Audio\DefaultAudio">DefaultAudio</abbr></a></small></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
integer
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_getAudioKiloBitrate">getAudioKiloBitrate</a>()
|
||||
<p>Gets the audio kiloBitrate value.</p>
|
||||
</td>
|
||||
<td><small>from <a href="../../../FFMpeg/Format/Audio/DefaultAudio.html#method_getAudioKiloBitrate"><abbr title="FFMpeg\Format\Audio\DefaultAudio">DefaultAudio</abbr></a></small></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_setAudioKiloBitrate">setAudioKiloBitrate</a>(integer $kiloBitrate)
|
||||
<p>Sets the kiloBitrate value.</p>
|
||||
</td>
|
||||
<td><small>from <a href="../../../FFMpeg/Format/Audio/DefaultAudio.html#method_setAudioKiloBitrate"><abbr title="FFMpeg\Format\Audio\DefaultAudio">DefaultAudio</abbr></a></small></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
integer
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_getAudioChannels">getAudioChannels</a>()
|
||||
<p>Gets the audio channels value.</p>
|
||||
</td>
|
||||
<td><small>from <a href="../../../FFMpeg/Format/Audio/DefaultAudio.html#method_getAudioChannels"><abbr title="FFMpeg\Format\Audio\DefaultAudio">DefaultAudio</abbr></a></small></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_setAudioChannels">setAudioChannels</a>(integer $channels)
|
||||
<p>Sets the channels value.</p>
|
||||
</td>
|
||||
<td><small>from <a href="../../../FFMpeg/Format/Audio/DefaultAudio.html#method_setAudioChannels"><abbr title="FFMpeg\Format\Audio\DefaultAudio">DefaultAudio</abbr></a></small></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
array
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_createProgressListener">createProgressListener</a>(<a href="../../../FFMpeg/Media/MediaTypeInterface.html"><abbr title="FFMpeg\Media\MediaTypeInterface">MediaTypeInterface</abbr></a> $media, <a href="../../../FFMpeg/FFProbe.html"><abbr title="FFMpeg\FFProbe">FFProbe</abbr></a> $ffprobe, Integer $pass, Integer $total)
|
||||
<p>Creates the progress listener.</p>
|
||||
</td>
|
||||
<td><small>from <a href="../../../FFMpeg/Format/Video/DefaultVideo.html#method_createProgressListener"><abbr title="FFMpeg\Format\Video\DefaultVideo">DefaultVideo</abbr></a></small></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
string
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_getPasses">getPasses</a>()
|
||||
<p>Returns the number of passes.</p>
|
||||
</td>
|
||||
<td><small>from <a href="../../../FFMpeg/Format/Audio/DefaultAudio.html#method_getPasses"><abbr title="FFMpeg\Format\Audio\DefaultAudio">DefaultAudio</abbr></a></small></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
integer
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_getKiloBitrate">getKiloBitrate</a>()
|
||||
<p>Gets the kiloBitrate value.</p>
|
||||
</td>
|
||||
<td><small>from <a href="../../../FFMpeg/Format/Video/DefaultVideo.html#method_getKiloBitrate"><abbr title="FFMpeg\Format\Video\DefaultVideo">DefaultVideo</abbr></a></small></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_setKiloBitrate">setKiloBitrate</a>(integer $kiloBitrate)
|
||||
<p>Sets the kiloBitrate value.</p>
|
||||
</td>
|
||||
<td><small>from <a href="../../../FFMpeg/Format/Video/DefaultVideo.html#method_setKiloBitrate"><abbr title="FFMpeg\Format\Video\DefaultVideo">DefaultVideo</abbr></a></small></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
string
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_getVideoCodec">getVideoCodec</a>()
|
||||
<p>Returns the video codec.</p>
|
||||
</td>
|
||||
<td><small>from <a href="../../../FFMpeg/Format/Video/DefaultVideo.html#method_getVideoCodec"><abbr title="FFMpeg\Format\Video\DefaultVideo">DefaultVideo</abbr></a></small></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_setVideoCodec">setVideoCodec</a>(string $videoCodec)
|
||||
<p>Sets the video codec, Should be in the available ones, otherwise an exception is thrown.</p>
|
||||
</td>
|
||||
<td><small>from <a href="../../../FFMpeg/Format/Video/DefaultVideo.html#method_setVideoCodec"><abbr title="FFMpeg\Format\Video\DefaultVideo">DefaultVideo</abbr></a></small></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
integer
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_getModulus">getModulus</a>()
|
||||
<p>
|
||||
</p>
|
||||
</td>
|
||||
<td><small>from <a href="../../../FFMpeg/Format/Video/DefaultVideo.html#method_getModulus"><abbr title="FFMpeg\Format\Video\DefaultVideo">DefaultVideo</abbr></a></small></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method___construct">__construct</a>($audioCodec = 'wmav3', $videoCodec = 'wmv3')
|
||||
<p>
|
||||
</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
Boolean
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_supportBFrames">supportBFrames</a>()
|
||||
<p>Returns true if the current format supports B-Frames.</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
array
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_getAvailableAudioCodecs">getAvailableAudioCodecs</a>()
|
||||
<p>Returns the list of available audio codecs for this format.</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
array
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_getAvailableVideoCodecs">getAvailableVideoCodecs</a>()
|
||||
<p>Returns the list of available video codecs for this format.</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h2>Details</h2>
|
||||
|
||||
<h3 id="method_getExtraParams">
|
||||
<div class="location">in <a href="../../../FFMpeg/Format/Audio/DefaultAudio.html#method_getExtraParams"><abbr title="FFMpeg\Format\Audio\DefaultAudio">DefaultAudio</abbr></a> at line 36</div>
|
||||
<code> public <abbr title="FFMpeg\Format\array()">array()</abbr>
|
||||
<strong>getExtraParams</strong>()</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Returns an array of extra parameters to add to ffmpeg commandline.</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><abbr title="FFMpeg\Format\array()">array()</abbr></td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_getAudioCodec">
|
||||
<div class="location">in <a href="../../../FFMpeg/Format/Audio/DefaultAudio.html#method_getAudioCodec"><abbr title="FFMpeg\Format\Audio\DefaultAudio">DefaultAudio</abbr></a> at line 44</div>
|
||||
<code> public string
|
||||
<strong>getAudioCodec</strong>()</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Returns the audio codec.</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td>string</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_setAudioCodec">
|
||||
<div class="location">in <a href="../../../FFMpeg/Format/Audio/DefaultAudio.html#method_setAudioCodec"><abbr title="FFMpeg\Format\Audio\DefaultAudio">DefaultAudio</abbr></a> at line 57</div>
|
||||
<code> public
|
||||
<strong>setAudioCodec</strong>(string $audioCodec)</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Sets the audio codec, Should be in the available ones, otherwise an exception is thrown.</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
<h4>Parameters</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td>string</td>
|
||||
<td>$audioCodec</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
<h4>Exceptions</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="http://php.net/InvalidArgumentException"><abbr title="InvalidArgumentException">InvalidArgumentException</abbr></a></td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_getAudioKiloBitrate">
|
||||
<div class="location">in <a href="../../../FFMpeg/Format/Audio/DefaultAudio.html#method_getAudioKiloBitrate"><abbr title="FFMpeg\Format\Audio\DefaultAudio">DefaultAudio</abbr></a> at line 74</div>
|
||||
<code> public integer
|
||||
<strong>getAudioKiloBitrate</strong>()</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Gets the audio kiloBitrate value.</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td>integer</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_setAudioKiloBitrate">
|
||||
<div class="location">in <a href="../../../FFMpeg/Format/Audio/DefaultAudio.html#method_setAudioKiloBitrate"><abbr title="FFMpeg\Format\Audio\DefaultAudio">DefaultAudio</abbr></a> at line 85</div>
|
||||
<code> public
|
||||
<strong>setAudioKiloBitrate</strong>(integer $kiloBitrate)</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Sets the kiloBitrate value.</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
<h4>Parameters</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td>integer</td>
|
||||
<td>$kiloBitrate</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
<h4>Exceptions</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="http://php.net/InvalidArgumentException"><abbr title="InvalidArgumentException">InvalidArgumentException</abbr></a></td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_getAudioChannels">
|
||||
<div class="location">in <a href="../../../FFMpeg/Format/Audio/DefaultAudio.html#method_getAudioChannels"><abbr title="FFMpeg\Format\Audio\DefaultAudio">DefaultAudio</abbr></a> at line 99</div>
|
||||
<code> public integer
|
||||
<strong>getAudioChannels</strong>()</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Gets the audio channels value.</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td>integer</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_setAudioChannels">
|
||||
<div class="location">in <a href="../../../FFMpeg/Format/Audio/DefaultAudio.html#method_setAudioChannels"><abbr title="FFMpeg\Format\Audio\DefaultAudio">DefaultAudio</abbr></a> at line 110</div>
|
||||
<code> public
|
||||
<strong>setAudioChannels</strong>(integer $channels)</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Sets the channels value.</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
<h4>Parameters</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td>integer</td>
|
||||
<td>$channels</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
<h4>Exceptions</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="http://php.net/InvalidArgumentException"><abbr title="InvalidArgumentException">InvalidArgumentException</abbr></a></td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_createProgressListener">
|
||||
<div class="location">in <a href="../../../FFMpeg/Format/Video/DefaultVideo.html#method_createProgressListener"><abbr title="FFMpeg\Format\Video\DefaultVideo">DefaultVideo</abbr></a> at line 100</div>
|
||||
<code> public array
|
||||
<strong>createProgressListener</strong>(<a href="../../../FFMpeg/Media/MediaTypeInterface.html"><abbr title="FFMpeg\Media\MediaTypeInterface">MediaTypeInterface</abbr></a> $media, <a href="../../../FFMpeg/FFProbe.html"><abbr title="FFMpeg\FFProbe">FFProbe</abbr></a> $ffprobe, Integer $pass, Integer $total)</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Creates the progress listener.</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
<h4>Parameters</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="../../../FFMpeg/Media/MediaTypeInterface.html"><abbr title="FFMpeg\Media\MediaTypeInterface">MediaTypeInterface</abbr></a></td>
|
||||
<td>$media</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><a href="../../../FFMpeg/FFProbe.html"><abbr title="FFMpeg\FFProbe">FFProbe</abbr></a></td>
|
||||
<td>$ffprobe</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Integer</td>
|
||||
<td>$pass</td>
|
||||
<td>The current pas snumber</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Integer</td>
|
||||
<td>$total</td>
|
||||
<td>The total pass number</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td>array</td>
|
||||
<td>An array of listeners</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_getPasses">
|
||||
<div class="location">in <a href="../../../FFMpeg/Format/Audio/DefaultAudio.html#method_getPasses"><abbr title="FFMpeg\Format\Audio\DefaultAudio">DefaultAudio</abbr></a> at line 138</div>
|
||||
<code> public string
|
||||
<strong>getPasses</strong>()</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Returns the number of passes.</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td>string</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_getKiloBitrate">
|
||||
<div class="location">in <a href="../../../FFMpeg/Format/Video/DefaultVideo.html#method_getKiloBitrate"><abbr title="FFMpeg\Format\Video\DefaultVideo">DefaultVideo</abbr></a> at line 38</div>
|
||||
<code> public integer
|
||||
<strong>getKiloBitrate</strong>()</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Gets the kiloBitrate value.</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td>integer</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_setKiloBitrate">
|
||||
<div class="location">in <a href="../../../FFMpeg/Format/Video/DefaultVideo.html#method_setKiloBitrate"><abbr title="FFMpeg\Format\Video\DefaultVideo">DefaultVideo</abbr></a> at line 49</div>
|
||||
<code> public
|
||||
<strong>setKiloBitrate</strong>(integer $kiloBitrate)</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Sets the kiloBitrate value.</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
<h4>Parameters</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td>integer</td>
|
||||
<td>$kiloBitrate</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
<h4>Exceptions</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="http://php.net/InvalidArgumentException"><abbr title="InvalidArgumentException">InvalidArgumentException</abbr></a></td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_getVideoCodec">
|
||||
<div class="location">in <a href="../../../FFMpeg/Format/Video/DefaultVideo.html#method_getVideoCodec"><abbr title="FFMpeg\Format\Video\DefaultVideo">DefaultVideo</abbr></a> at line 63</div>
|
||||
<code> public string
|
||||
<strong>getVideoCodec</strong>()</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Returns the video codec.</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td>string</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_setVideoCodec">
|
||||
<div class="location">in <a href="../../../FFMpeg/Format/Video/DefaultVideo.html#method_setVideoCodec"><abbr title="FFMpeg\Format\Video\DefaultVideo">DefaultVideo</abbr></a> at line 75</div>
|
||||
<code> public
|
||||
<strong>setVideoCodec</strong>(string $videoCodec)</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Sets the video codec, Should be in the available ones, otherwise an exception is thrown.</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
<h4>Parameters</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td>string</td>
|
||||
<td>$videoCodec</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
<h4>Exceptions</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="http://php.net/InvalidArgumentException"><abbr title="InvalidArgumentException">InvalidArgumentException</abbr></a></td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_getModulus">
|
||||
<div class="location">in <a href="../../../FFMpeg/Format/Video/DefaultVideo.html#method_getModulus"><abbr title="FFMpeg\Format\Video\DefaultVideo">DefaultVideo</abbr></a> at line 92</div>
|
||||
<code> public integer
|
||||
<strong>getModulus</strong>()</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>
|
||||
</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td>integer</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method___construct">
|
||||
<div class="location">at line 19</div>
|
||||
<code> public
|
||||
<strong>__construct</strong>($audioCodec = 'wmav3', $videoCodec = 'wmv3')</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>
|
||||
</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
<h4>Parameters</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td></td>
|
||||
<td>$audioCodec</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td></td>
|
||||
<td>$videoCodec</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_supportBFrames">
|
||||
<div class="location">at line 29</div>
|
||||
<code> public Boolean
|
||||
<strong>supportBFrames</strong>()</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Returns true if the current format supports B-Frames.</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td>Boolean</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_getAvailableAudioCodecs">
|
||||
<div class="location">at line 37</div>
|
||||
<code> public array
|
||||
<strong>getAvailableAudioCodecs</strong>()</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Returns the list of available audio codecs for this format.</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td>array</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_getAvailableVideoCodecs">
|
||||
<div class="location">at line 45</div>
|
||||
<code> public array
|
||||
<strong>getAvailableVideoCodecs</strong>()</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Returns the list of available video codecs for this format.</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td>array</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
</div>
|
||||
<div id="footer">
|
||||
Generated by <a href="http://sami.sensiolabs.org/" target="_top">Sami, the API Documentation Generator</a>.
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
|
|
@ -1,791 +0,0 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<meta name="robots" content="index, follow, all" />
|
||||
<title>FFMpeg\Format\Video\WebM | PHP-FFMpeg API</title>
|
||||
<link rel="stylesheet" type="text/css" href="../../../stylesheet.css">
|
||||
</head>
|
||||
<body id="class">
|
||||
<div class="header">
|
||||
<ul>
|
||||
<li><a href="../../../classes.html">Classes</a></li>
|
||||
<li><a href="../../../namespaces.html">Namespaces</a></li>
|
||||
<li><a href="../../../interfaces.html">Interfaces</a></li>
|
||||
<li><a href="../../../traits.html">Traits</a></li>
|
||||
<li><a href="../../../doc-index.html">Index</a></li>
|
||||
|
||||
</ul>
|
||||
|
||||
<div id="title">PHP-FFMpeg API</div>
|
||||
|
||||
<div class="type">Class</div>
|
||||
<h1><a href="../../../FFMpeg/Format/Video.html">FFMpeg\Format\Video</a>\WebM</h1>
|
||||
</div>
|
||||
<div class="content">
|
||||
<p> class
|
||||
<strong>WebM</strong> extends <a href="../../../FFMpeg/Format/Video/DefaultVideo.html"><abbr title="FFMpeg\Format\Video\DefaultVideo">DefaultVideo</abbr></a></p>
|
||||
|
||||
<div class="description">
|
||||
<p>The WebM video format</p>
|
||||
<p>
|
||||
</p>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<h2>Methods</h2>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td class="type">
|
||||
<abbr title="FFMpeg\Format\array()">array()</abbr>
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_getExtraParams">getExtraParams</a>()
|
||||
<p>Returns an array of extra parameters to add to ffmpeg commandline.</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
string
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_getAudioCodec">getAudioCodec</a>()
|
||||
<p>Returns the audio codec.</p>
|
||||
</td>
|
||||
<td><small>from <a href="../../../FFMpeg/Format/Audio/DefaultAudio.html#method_getAudioCodec"><abbr title="FFMpeg\Format\Audio\DefaultAudio">DefaultAudio</abbr></a></small></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_setAudioCodec">setAudioCodec</a>(string $audioCodec)
|
||||
<p>Sets the audio codec, Should be in the available ones, otherwise an exception is thrown.</p>
|
||||
</td>
|
||||
<td><small>from <a href="../../../FFMpeg/Format/Audio/DefaultAudio.html#method_setAudioCodec"><abbr title="FFMpeg\Format\Audio\DefaultAudio">DefaultAudio</abbr></a></small></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
integer
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_getAudioKiloBitrate">getAudioKiloBitrate</a>()
|
||||
<p>Gets the audio kiloBitrate value.</p>
|
||||
</td>
|
||||
<td><small>from <a href="../../../FFMpeg/Format/Audio/DefaultAudio.html#method_getAudioKiloBitrate"><abbr title="FFMpeg\Format\Audio\DefaultAudio">DefaultAudio</abbr></a></small></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_setAudioKiloBitrate">setAudioKiloBitrate</a>(integer $kiloBitrate)
|
||||
<p>Sets the kiloBitrate value.</p>
|
||||
</td>
|
||||
<td><small>from <a href="../../../FFMpeg/Format/Audio/DefaultAudio.html#method_setAudioKiloBitrate"><abbr title="FFMpeg\Format\Audio\DefaultAudio">DefaultAudio</abbr></a></small></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
integer
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_getAudioChannels">getAudioChannels</a>()
|
||||
<p>Gets the audio channels value.</p>
|
||||
</td>
|
||||
<td><small>from <a href="../../../FFMpeg/Format/Audio/DefaultAudio.html#method_getAudioChannels"><abbr title="FFMpeg\Format\Audio\DefaultAudio">DefaultAudio</abbr></a></small></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_setAudioChannels">setAudioChannels</a>(integer $channels)
|
||||
<p>Sets the channels value.</p>
|
||||
</td>
|
||||
<td><small>from <a href="../../../FFMpeg/Format/Audio/DefaultAudio.html#method_setAudioChannels"><abbr title="FFMpeg\Format\Audio\DefaultAudio">DefaultAudio</abbr></a></small></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
array
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_createProgressListener">createProgressListener</a>(<a href="../../../FFMpeg/Media/MediaTypeInterface.html"><abbr title="FFMpeg\Media\MediaTypeInterface">MediaTypeInterface</abbr></a> $media, <a href="../../../FFMpeg/FFProbe.html"><abbr title="FFMpeg\FFProbe">FFProbe</abbr></a> $ffprobe, Integer $pass, Integer $total)
|
||||
<p>Creates the progress listener.</p>
|
||||
</td>
|
||||
<td><small>from <a href="../../../FFMpeg/Format/Video/DefaultVideo.html#method_createProgressListener"><abbr title="FFMpeg\Format\Video\DefaultVideo">DefaultVideo</abbr></a></small></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
string
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_getPasses">getPasses</a>()
|
||||
<p>Returns the number of passes.</p>
|
||||
</td>
|
||||
<td><small>from <a href="../../../FFMpeg/Format/Audio/DefaultAudio.html#method_getPasses"><abbr title="FFMpeg\Format\Audio\DefaultAudio">DefaultAudio</abbr></a></small></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
integer
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_getKiloBitrate">getKiloBitrate</a>()
|
||||
<p>Gets the kiloBitrate value.</p>
|
||||
</td>
|
||||
<td><small>from <a href="../../../FFMpeg/Format/Video/DefaultVideo.html#method_getKiloBitrate"><abbr title="FFMpeg\Format\Video\DefaultVideo">DefaultVideo</abbr></a></small></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_setKiloBitrate">setKiloBitrate</a>(integer $kiloBitrate)
|
||||
<p>Sets the kiloBitrate value.</p>
|
||||
</td>
|
||||
<td><small>from <a href="../../../FFMpeg/Format/Video/DefaultVideo.html#method_setKiloBitrate"><abbr title="FFMpeg\Format\Video\DefaultVideo">DefaultVideo</abbr></a></small></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
string
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_getVideoCodec">getVideoCodec</a>()
|
||||
<p>Returns the video codec.</p>
|
||||
</td>
|
||||
<td><small>from <a href="../../../FFMpeg/Format/Video/DefaultVideo.html#method_getVideoCodec"><abbr title="FFMpeg\Format\Video\DefaultVideo">DefaultVideo</abbr></a></small></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_setVideoCodec">setVideoCodec</a>(string $videoCodec)
|
||||
<p>Sets the video codec, Should be in the available ones, otherwise an exception is thrown.</p>
|
||||
</td>
|
||||
<td><small>from <a href="../../../FFMpeg/Format/Video/DefaultVideo.html#method_setVideoCodec"><abbr title="FFMpeg\Format\Video\DefaultVideo">DefaultVideo</abbr></a></small></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
integer
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_getModulus">getModulus</a>()
|
||||
<p>
|
||||
</p>
|
||||
</td>
|
||||
<td><small>from <a href="../../../FFMpeg/Format/Video/DefaultVideo.html#method_getModulus"><abbr title="FFMpeg\Format\Video\DefaultVideo">DefaultVideo</abbr></a></small></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method___construct">__construct</a>($audioCodec = 'libvorbis', $videoCodec = 'libvpx')
|
||||
<p>
|
||||
</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
Boolean
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_supportBFrames">supportBFrames</a>()
|
||||
<p>Returns true if the current format supports B-Frames.</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
array
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_getAvailableAudioCodecs">getAvailableAudioCodecs</a>()
|
||||
<p>Returns the list of available audio codecs for this format.</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
array
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_getAvailableVideoCodecs">getAvailableVideoCodecs</a>()
|
||||
<p>Returns the list of available video codecs for this format.</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h2>Details</h2>
|
||||
|
||||
<h3 id="method_getExtraParams">
|
||||
<div class="location">at line 37</div>
|
||||
<code> public <abbr title="FFMpeg\Format\array()">array()</abbr>
|
||||
<strong>getExtraParams</strong>()</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Returns an array of extra parameters to add to ffmpeg commandline.</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><abbr title="FFMpeg\Format\array()">array()</abbr></td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_getAudioCodec">
|
||||
<div class="location">in <a href="../../../FFMpeg/Format/Audio/DefaultAudio.html#method_getAudioCodec"><abbr title="FFMpeg\Format\Audio\DefaultAudio">DefaultAudio</abbr></a> at line 44</div>
|
||||
<code> public string
|
||||
<strong>getAudioCodec</strong>()</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Returns the audio codec.</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td>string</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_setAudioCodec">
|
||||
<div class="location">in <a href="../../../FFMpeg/Format/Audio/DefaultAudio.html#method_setAudioCodec"><abbr title="FFMpeg\Format\Audio\DefaultAudio">DefaultAudio</abbr></a> at line 57</div>
|
||||
<code> public
|
||||
<strong>setAudioCodec</strong>(string $audioCodec)</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Sets the audio codec, Should be in the available ones, otherwise an exception is thrown.</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
<h4>Parameters</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td>string</td>
|
||||
<td>$audioCodec</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
<h4>Exceptions</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="http://php.net/InvalidArgumentException"><abbr title="InvalidArgumentException">InvalidArgumentException</abbr></a></td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_getAudioKiloBitrate">
|
||||
<div class="location">in <a href="../../../FFMpeg/Format/Audio/DefaultAudio.html#method_getAudioKiloBitrate"><abbr title="FFMpeg\Format\Audio\DefaultAudio">DefaultAudio</abbr></a> at line 74</div>
|
||||
<code> public integer
|
||||
<strong>getAudioKiloBitrate</strong>()</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Gets the audio kiloBitrate value.</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td>integer</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_setAudioKiloBitrate">
|
||||
<div class="location">in <a href="../../../FFMpeg/Format/Audio/DefaultAudio.html#method_setAudioKiloBitrate"><abbr title="FFMpeg\Format\Audio\DefaultAudio">DefaultAudio</abbr></a> at line 85</div>
|
||||
<code> public
|
||||
<strong>setAudioKiloBitrate</strong>(integer $kiloBitrate)</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Sets the kiloBitrate value.</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
<h4>Parameters</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td>integer</td>
|
||||
<td>$kiloBitrate</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
<h4>Exceptions</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="http://php.net/InvalidArgumentException"><abbr title="InvalidArgumentException">InvalidArgumentException</abbr></a></td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_getAudioChannels">
|
||||
<div class="location">in <a href="../../../FFMpeg/Format/Audio/DefaultAudio.html#method_getAudioChannels"><abbr title="FFMpeg\Format\Audio\DefaultAudio">DefaultAudio</abbr></a> at line 99</div>
|
||||
<code> public integer
|
||||
<strong>getAudioChannels</strong>()</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Gets the audio channels value.</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td>integer</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_setAudioChannels">
|
||||
<div class="location">in <a href="../../../FFMpeg/Format/Audio/DefaultAudio.html#method_setAudioChannels"><abbr title="FFMpeg\Format\Audio\DefaultAudio">DefaultAudio</abbr></a> at line 110</div>
|
||||
<code> public
|
||||
<strong>setAudioChannels</strong>(integer $channels)</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Sets the channels value.</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
<h4>Parameters</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td>integer</td>
|
||||
<td>$channels</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
<h4>Exceptions</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="http://php.net/InvalidArgumentException"><abbr title="InvalidArgumentException">InvalidArgumentException</abbr></a></td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_createProgressListener">
|
||||
<div class="location">in <a href="../../../FFMpeg/Format/Video/DefaultVideo.html#method_createProgressListener"><abbr title="FFMpeg\Format\Video\DefaultVideo">DefaultVideo</abbr></a> at line 100</div>
|
||||
<code> public array
|
||||
<strong>createProgressListener</strong>(<a href="../../../FFMpeg/Media/MediaTypeInterface.html"><abbr title="FFMpeg\Media\MediaTypeInterface">MediaTypeInterface</abbr></a> $media, <a href="../../../FFMpeg/FFProbe.html"><abbr title="FFMpeg\FFProbe">FFProbe</abbr></a> $ffprobe, Integer $pass, Integer $total)</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Creates the progress listener.</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
<h4>Parameters</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="../../../FFMpeg/Media/MediaTypeInterface.html"><abbr title="FFMpeg\Media\MediaTypeInterface">MediaTypeInterface</abbr></a></td>
|
||||
<td>$media</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><a href="../../../FFMpeg/FFProbe.html"><abbr title="FFMpeg\FFProbe">FFProbe</abbr></a></td>
|
||||
<td>$ffprobe</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Integer</td>
|
||||
<td>$pass</td>
|
||||
<td>The current pas snumber</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Integer</td>
|
||||
<td>$total</td>
|
||||
<td>The total pass number</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td>array</td>
|
||||
<td>An array of listeners</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_getPasses">
|
||||
<div class="location">in <a href="../../../FFMpeg/Format/Audio/DefaultAudio.html#method_getPasses"><abbr title="FFMpeg\Format\Audio\DefaultAudio">DefaultAudio</abbr></a> at line 138</div>
|
||||
<code> public string
|
||||
<strong>getPasses</strong>()</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Returns the number of passes.</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td>string</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_getKiloBitrate">
|
||||
<div class="location">in <a href="../../../FFMpeg/Format/Video/DefaultVideo.html#method_getKiloBitrate"><abbr title="FFMpeg\Format\Video\DefaultVideo">DefaultVideo</abbr></a> at line 38</div>
|
||||
<code> public integer
|
||||
<strong>getKiloBitrate</strong>()</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Gets the kiloBitrate value.</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td>integer</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_setKiloBitrate">
|
||||
<div class="location">in <a href="../../../FFMpeg/Format/Video/DefaultVideo.html#method_setKiloBitrate"><abbr title="FFMpeg\Format\Video\DefaultVideo">DefaultVideo</abbr></a> at line 49</div>
|
||||
<code> public
|
||||
<strong>setKiloBitrate</strong>(integer $kiloBitrate)</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Sets the kiloBitrate value.</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
<h4>Parameters</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td>integer</td>
|
||||
<td>$kiloBitrate</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
<h4>Exceptions</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="http://php.net/InvalidArgumentException"><abbr title="InvalidArgumentException">InvalidArgumentException</abbr></a></td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_getVideoCodec">
|
||||
<div class="location">in <a href="../../../FFMpeg/Format/Video/DefaultVideo.html#method_getVideoCodec"><abbr title="FFMpeg\Format\Video\DefaultVideo">DefaultVideo</abbr></a> at line 63</div>
|
||||
<code> public string
|
||||
<strong>getVideoCodec</strong>()</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Returns the video codec.</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td>string</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_setVideoCodec">
|
||||
<div class="location">in <a href="../../../FFMpeg/Format/Video/DefaultVideo.html#method_setVideoCodec"><abbr title="FFMpeg\Format\Video\DefaultVideo">DefaultVideo</abbr></a> at line 75</div>
|
||||
<code> public
|
||||
<strong>setVideoCodec</strong>(string $videoCodec)</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Sets the video codec, Should be in the available ones, otherwise an exception is thrown.</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
<h4>Parameters</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td>string</td>
|
||||
<td>$videoCodec</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
<h4>Exceptions</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="http://php.net/InvalidArgumentException"><abbr title="InvalidArgumentException">InvalidArgumentException</abbr></a></td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_getModulus">
|
||||
<div class="location">in <a href="../../../FFMpeg/Format/Video/DefaultVideo.html#method_getModulus"><abbr title="FFMpeg\Format\Video\DefaultVideo">DefaultVideo</abbr></a> at line 92</div>
|
||||
<code> public integer
|
||||
<strong>getModulus</strong>()</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>
|
||||
</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td>integer</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method___construct">
|
||||
<div class="location">at line 19</div>
|
||||
<code> public
|
||||
<strong>__construct</strong>($audioCodec = 'libvorbis', $videoCodec = 'libvpx')</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>
|
||||
</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
<h4>Parameters</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td></td>
|
||||
<td>$audioCodec</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td></td>
|
||||
<td>$videoCodec</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_supportBFrames">
|
||||
<div class="location">at line 29</div>
|
||||
<code> public Boolean
|
||||
<strong>supportBFrames</strong>()</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Returns true if the current format supports B-Frames.</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td>Boolean</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_getAvailableAudioCodecs">
|
||||
<div class="location">at line 45</div>
|
||||
<code> public array
|
||||
<strong>getAvailableAudioCodecs</strong>()</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Returns the list of available audio codecs for this format.</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td>array</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_getAvailableVideoCodecs">
|
||||
<div class="location">at line 53</div>
|
||||
<code> public array
|
||||
<strong>getAvailableVideoCodecs</strong>()</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Returns the list of available video codecs for this format.</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td>array</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
</div>
|
||||
<div id="footer">
|
||||
Generated by <a href="http://sami.sensiolabs.org/" target="_top">Sami, the API Documentation Generator</a>.
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
|
|
@ -1,875 +0,0 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<meta name="robots" content="index, follow, all" />
|
||||
<title>FFMpeg\Format\Video\X264 | PHP-FFMpeg API</title>
|
||||
<link rel="stylesheet" type="text/css" href="../../../stylesheet.css">
|
||||
</head>
|
||||
<body id="class">
|
||||
<div class="header">
|
||||
<ul>
|
||||
<li><a href="../../../classes.html">Classes</a></li>
|
||||
<li><a href="../../../namespaces.html">Namespaces</a></li>
|
||||
<li><a href="../../../interfaces.html">Interfaces</a></li>
|
||||
<li><a href="../../../traits.html">Traits</a></li>
|
||||
<li><a href="../../../doc-index.html">Index</a></li>
|
||||
|
||||
</ul>
|
||||
|
||||
<div id="title">PHP-FFMpeg API</div>
|
||||
|
||||
<div class="type">Class</div>
|
||||
<h1><a href="../../../FFMpeg/Format/Video.html">FFMpeg\Format\Video</a>\X264</h1>
|
||||
</div>
|
||||
<div class="content">
|
||||
<p> class
|
||||
<strong>X264</strong> extends <a href="../../../FFMpeg/Format/Video/DefaultVideo.html"><abbr title="FFMpeg\Format\Video\DefaultVideo">DefaultVideo</abbr></a></p>
|
||||
|
||||
<div class="description">
|
||||
<p>The X264 video format</p>
|
||||
<p>
|
||||
</p>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<h2>Methods</h2>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td class="type">
|
||||
<abbr title="FFMpeg\Format\array()">array()</abbr>
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_getExtraParams">getExtraParams</a>()
|
||||
<p>Returns an array of extra parameters to add to ffmpeg commandline.</p>
|
||||
</td>
|
||||
<td><small>from <a href="../../../FFMpeg/Format/Audio/DefaultAudio.html#method_getExtraParams"><abbr title="FFMpeg\Format\Audio\DefaultAudio">DefaultAudio</abbr></a></small></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
string
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_getAudioCodec">getAudioCodec</a>()
|
||||
<p>Returns the audio codec.</p>
|
||||
</td>
|
||||
<td><small>from <a href="../../../FFMpeg/Format/Audio/DefaultAudio.html#method_getAudioCodec"><abbr title="FFMpeg\Format\Audio\DefaultAudio">DefaultAudio</abbr></a></small></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_setAudioCodec">setAudioCodec</a>(string $audioCodec)
|
||||
<p>Sets the audio codec, Should be in the available ones, otherwise an exception is thrown.</p>
|
||||
</td>
|
||||
<td><small>from <a href="../../../FFMpeg/Format/Audio/DefaultAudio.html#method_setAudioCodec"><abbr title="FFMpeg\Format\Audio\DefaultAudio">DefaultAudio</abbr></a></small></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
integer
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_getAudioKiloBitrate">getAudioKiloBitrate</a>()
|
||||
<p>Gets the audio kiloBitrate value.</p>
|
||||
</td>
|
||||
<td><small>from <a href="../../../FFMpeg/Format/Audio/DefaultAudio.html#method_getAudioKiloBitrate"><abbr title="FFMpeg\Format\Audio\DefaultAudio">DefaultAudio</abbr></a></small></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_setAudioKiloBitrate">setAudioKiloBitrate</a>(integer $kiloBitrate)
|
||||
<p>Sets the kiloBitrate value.</p>
|
||||
</td>
|
||||
<td><small>from <a href="../../../FFMpeg/Format/Audio/DefaultAudio.html#method_setAudioKiloBitrate"><abbr title="FFMpeg\Format\Audio\DefaultAudio">DefaultAudio</abbr></a></small></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
integer
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_getAudioChannels">getAudioChannels</a>()
|
||||
<p>Gets the audio channels value.</p>
|
||||
</td>
|
||||
<td><small>from <a href="../../../FFMpeg/Format/Audio/DefaultAudio.html#method_getAudioChannels"><abbr title="FFMpeg\Format\Audio\DefaultAudio">DefaultAudio</abbr></a></small></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_setAudioChannels">setAudioChannels</a>(integer $channels)
|
||||
<p>Sets the channels value.</p>
|
||||
</td>
|
||||
<td><small>from <a href="../../../FFMpeg/Format/Audio/DefaultAudio.html#method_setAudioChannels"><abbr title="FFMpeg\Format\Audio\DefaultAudio">DefaultAudio</abbr></a></small></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
array
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_createProgressListener">createProgressListener</a>(<a href="../../../FFMpeg/Media/MediaTypeInterface.html"><abbr title="FFMpeg\Media\MediaTypeInterface">MediaTypeInterface</abbr></a> $media, <a href="../../../FFMpeg/FFProbe.html"><abbr title="FFMpeg\FFProbe">FFProbe</abbr></a> $ffprobe, Integer $pass, Integer $total)
|
||||
<p>Creates the progress listener.</p>
|
||||
</td>
|
||||
<td><small>from <a href="../../../FFMpeg/Format/Video/DefaultVideo.html#method_createProgressListener"><abbr title="FFMpeg\Format\Video\DefaultVideo">DefaultVideo</abbr></a></small></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
integer
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_setPasses">setPasses</a>(integer $passes)
|
||||
<p>Sets the number of passes.</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
integer
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_getPasses">getPasses</a>()
|
||||
<p>Returns the number of passes.</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
integer
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_getKiloBitrate">getKiloBitrate</a>()
|
||||
<p>Gets the kiloBitrate value.</p>
|
||||
</td>
|
||||
<td><small>from <a href="../../../FFMpeg/Format/Video/DefaultVideo.html#method_getKiloBitrate"><abbr title="FFMpeg\Format\Video\DefaultVideo">DefaultVideo</abbr></a></small></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_setKiloBitrate">setKiloBitrate</a>(integer $kiloBitrate)
|
||||
<p>Sets the kiloBitrate value.</p>
|
||||
</td>
|
||||
<td><small>from <a href="../../../FFMpeg/Format/Video/DefaultVideo.html#method_setKiloBitrate"><abbr title="FFMpeg\Format\Video\DefaultVideo">DefaultVideo</abbr></a></small></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
string
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_getVideoCodec">getVideoCodec</a>()
|
||||
<p>Returns the video codec.</p>
|
||||
</td>
|
||||
<td><small>from <a href="../../../FFMpeg/Format/Video/DefaultVideo.html#method_getVideoCodec"><abbr title="FFMpeg\Format\Video\DefaultVideo">DefaultVideo</abbr></a></small></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_setVideoCodec">setVideoCodec</a>(string $videoCodec)
|
||||
<p>Sets the video codec, Should be in the available ones, otherwise an exception is thrown.</p>
|
||||
</td>
|
||||
<td><small>from <a href="../../../FFMpeg/Format/Video/DefaultVideo.html#method_setVideoCodec"><abbr title="FFMpeg\Format\Video\DefaultVideo">DefaultVideo</abbr></a></small></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
int
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_getModulus">getModulus</a>()
|
||||
<p>
|
||||
</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method___construct">__construct</a>($audioCodec = 'libfaac', $videoCodec = 'libx264')
|
||||
<p>
|
||||
</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
Boolean
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_supportBFrames">supportBFrames</a>()
|
||||
<p>Returns true if the current format supports B-Frames.</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
<a href="../../../FFMpeg/Format/Video/X264.html"><abbr title="FFMpeg\Format\Video\X264">X264</abbr></a>
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_setBFramesSupport">setBFramesSupport</a>(<abbr title="FFMpeg\Format\Video\$support">$support</abbr> $support)
|
||||
<p>
|
||||
</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
array
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_getAvailableAudioCodecs">getAvailableAudioCodecs</a>()
|
||||
<p>Returns the list of available audio codecs for this format.</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
array
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_getAvailableVideoCodecs">getAvailableVideoCodecs</a>()
|
||||
<p>Returns the list of available video codecs for this format.</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h2>Details</h2>
|
||||
|
||||
<h3 id="method_getExtraParams">
|
||||
<div class="location">in <a href="../../../FFMpeg/Format/Audio/DefaultAudio.html#method_getExtraParams"><abbr title="FFMpeg\Format\Audio\DefaultAudio">DefaultAudio</abbr></a> at line 36</div>
|
||||
<code> public <abbr title="FFMpeg\Format\array()">array()</abbr>
|
||||
<strong>getExtraParams</strong>()</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Returns an array of extra parameters to add to ffmpeg commandline.</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><abbr title="FFMpeg\Format\array()">array()</abbr></td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_getAudioCodec">
|
||||
<div class="location">in <a href="../../../FFMpeg/Format/Audio/DefaultAudio.html#method_getAudioCodec"><abbr title="FFMpeg\Format\Audio\DefaultAudio">DefaultAudio</abbr></a> at line 44</div>
|
||||
<code> public string
|
||||
<strong>getAudioCodec</strong>()</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Returns the audio codec.</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td>string</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_setAudioCodec">
|
||||
<div class="location">in <a href="../../../FFMpeg/Format/Audio/DefaultAudio.html#method_setAudioCodec"><abbr title="FFMpeg\Format\Audio\DefaultAudio">DefaultAudio</abbr></a> at line 57</div>
|
||||
<code> public
|
||||
<strong>setAudioCodec</strong>(string $audioCodec)</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Sets the audio codec, Should be in the available ones, otherwise an exception is thrown.</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
<h4>Parameters</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td>string</td>
|
||||
<td>$audioCodec</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
<h4>Exceptions</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="http://php.net/InvalidArgumentException"><abbr title="InvalidArgumentException">InvalidArgumentException</abbr></a></td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_getAudioKiloBitrate">
|
||||
<div class="location">in <a href="../../../FFMpeg/Format/Audio/DefaultAudio.html#method_getAudioKiloBitrate"><abbr title="FFMpeg\Format\Audio\DefaultAudio">DefaultAudio</abbr></a> at line 74</div>
|
||||
<code> public integer
|
||||
<strong>getAudioKiloBitrate</strong>()</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Gets the audio kiloBitrate value.</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td>integer</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_setAudioKiloBitrate">
|
||||
<div class="location">in <a href="../../../FFMpeg/Format/Audio/DefaultAudio.html#method_setAudioKiloBitrate"><abbr title="FFMpeg\Format\Audio\DefaultAudio">DefaultAudio</abbr></a> at line 85</div>
|
||||
<code> public
|
||||
<strong>setAudioKiloBitrate</strong>(integer $kiloBitrate)</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Sets the kiloBitrate value.</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
<h4>Parameters</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td>integer</td>
|
||||
<td>$kiloBitrate</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
<h4>Exceptions</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="http://php.net/InvalidArgumentException"><abbr title="InvalidArgumentException">InvalidArgumentException</abbr></a></td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_getAudioChannels">
|
||||
<div class="location">in <a href="../../../FFMpeg/Format/Audio/DefaultAudio.html#method_getAudioChannels"><abbr title="FFMpeg\Format\Audio\DefaultAudio">DefaultAudio</abbr></a> at line 99</div>
|
||||
<code> public integer
|
||||
<strong>getAudioChannels</strong>()</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Gets the audio channels value.</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td>integer</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_setAudioChannels">
|
||||
<div class="location">in <a href="../../../FFMpeg/Format/Audio/DefaultAudio.html#method_setAudioChannels"><abbr title="FFMpeg\Format\Audio\DefaultAudio">DefaultAudio</abbr></a> at line 110</div>
|
||||
<code> public
|
||||
<strong>setAudioChannels</strong>(integer $channels)</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Sets the channels value.</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
<h4>Parameters</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td>integer</td>
|
||||
<td>$channels</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
<h4>Exceptions</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="http://php.net/InvalidArgumentException"><abbr title="InvalidArgumentException">InvalidArgumentException</abbr></a></td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_createProgressListener">
|
||||
<div class="location">in <a href="../../../FFMpeg/Format/Video/DefaultVideo.html#method_createProgressListener"><abbr title="FFMpeg\Format\Video\DefaultVideo">DefaultVideo</abbr></a> at line 100</div>
|
||||
<code> public array
|
||||
<strong>createProgressListener</strong>(<a href="../../../FFMpeg/Media/MediaTypeInterface.html"><abbr title="FFMpeg\Media\MediaTypeInterface">MediaTypeInterface</abbr></a> $media, <a href="../../../FFMpeg/FFProbe.html"><abbr title="FFMpeg\FFProbe">FFProbe</abbr></a> $ffprobe, Integer $pass, Integer $total)</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Creates the progress listener.</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
<h4>Parameters</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="../../../FFMpeg/Media/MediaTypeInterface.html"><abbr title="FFMpeg\Media\MediaTypeInterface">MediaTypeInterface</abbr></a></td>
|
||||
<td>$media</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><a href="../../../FFMpeg/FFProbe.html"><abbr title="FFMpeg\FFProbe">FFProbe</abbr></a></td>
|
||||
<td>$ffprobe</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Integer</td>
|
||||
<td>$pass</td>
|
||||
<td>The current pas snumber</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Integer</td>
|
||||
<td>$total</td>
|
||||
<td>The total pass number</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td>array</td>
|
||||
<td>An array of listeners</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_setPasses">
|
||||
<div class="location">in <a href="../../../FFMpeg/Format/Video/X264.html#method_setPasses"><abbr title="FFMpeg\Format\Video\X264">X264</abbr></a> at line 68</div>
|
||||
<code> public integer
|
||||
<strong>setPasses</strong>(integer $passes)</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Sets the number of passes.</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
|
||||
<h4>Parameters</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td>integer</td>
|
||||
<td>$passes</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_getPasses">
|
||||
<div class="location">in <a href="../../../FFMpeg/Format/Video/X264.html#method_getPasses"><abbr title="FFMpeg\Format\Video\X264">X264</abbr></a> at line 79</div>
|
||||
<code> public integer
|
||||
<strong>getPasses</strong>()</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Returns the number of passes.</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td>integer</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_getKiloBitrate">
|
||||
<div class="location">in <a href="../../../FFMpeg/Format/Video/DefaultVideo.html#method_getKiloBitrate"><abbr title="FFMpeg\Format\Video\DefaultVideo">DefaultVideo</abbr></a> at line 38</div>
|
||||
<code> public integer
|
||||
<strong>getKiloBitrate</strong>()</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Gets the kiloBitrate value.</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td>integer</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_setKiloBitrate">
|
||||
<div class="location">in <a href="../../../FFMpeg/Format/Video/DefaultVideo.html#method_setKiloBitrate"><abbr title="FFMpeg\Format\Video\DefaultVideo">DefaultVideo</abbr></a> at line 49</div>
|
||||
<code> public
|
||||
<strong>setKiloBitrate</strong>(integer $kiloBitrate)</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Sets the kiloBitrate value.</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
<h4>Parameters</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td>integer</td>
|
||||
<td>$kiloBitrate</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
<h4>Exceptions</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="http://php.net/InvalidArgumentException"><abbr title="InvalidArgumentException">InvalidArgumentException</abbr></a></td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_getVideoCodec">
|
||||
<div class="location">in <a href="../../../FFMpeg/Format/Video/DefaultVideo.html#method_getVideoCodec"><abbr title="FFMpeg\Format\Video\DefaultVideo">DefaultVideo</abbr></a> at line 63</div>
|
||||
<code> public string
|
||||
<strong>getVideoCodec</strong>()</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Returns the video codec.</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td>string</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_setVideoCodec">
|
||||
<div class="location">in <a href="../../../FFMpeg/Format/Video/DefaultVideo.html#method_setVideoCodec"><abbr title="FFMpeg\Format\Video\DefaultVideo">DefaultVideo</abbr></a> at line 75</div>
|
||||
<code> public
|
||||
<strong>setVideoCodec</strong>(string $videoCodec)</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Sets the video codec, Should be in the available ones, otherwise an exception is thrown.</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
<h4>Parameters</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td>string</td>
|
||||
<td>$videoCodec</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
<h4>Exceptions</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="http://php.net/InvalidArgumentException"><abbr title="InvalidArgumentException">InvalidArgumentException</abbr></a></td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_getModulus">
|
||||
<div class="location">at line 76</div>
|
||||
<code> public int
|
||||
<strong>getModulus</strong>()</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>
|
||||
</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td>int</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method___construct">
|
||||
<div class="location">at line 22</div>
|
||||
<code> public
|
||||
<strong>__construct</strong>($audioCodec = 'libfaac', $videoCodec = 'libx264')</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>
|
||||
</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
<h4>Parameters</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td></td>
|
||||
<td>$audioCodec</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td></td>
|
||||
<td>$videoCodec</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_supportBFrames">
|
||||
<div class="location">at line 32</div>
|
||||
<code> public Boolean
|
||||
<strong>supportBFrames</strong>()</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Returns true if the current format supports B-Frames.</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td>Boolean</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_setBFramesSupport">
|
||||
<div class="location">at line 42</div>
|
||||
<code> public <a href="../../../FFMpeg/Format/Video/X264.html"><abbr title="FFMpeg\Format\Video\X264">X264</abbr></a>
|
||||
<strong>setBFramesSupport</strong>(<abbr title="FFMpeg\Format\Video\$support">$support</abbr> $support)</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>
|
||||
</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
<h4>Parameters</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><abbr title="FFMpeg\Format\Video\$support">$support</abbr></td>
|
||||
<td>$support</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="../../../FFMpeg/Format/Video/X264.html"><abbr title="FFMpeg\Format\Video\X264">X264</abbr></a></td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_getAvailableAudioCodecs">
|
||||
<div class="location">at line 52</div>
|
||||
<code> public array
|
||||
<strong>getAvailableAudioCodecs</strong>()</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Returns the list of available audio codecs for this format.</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td>array</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_getAvailableVideoCodecs">
|
||||
<div class="location">at line 60</div>
|
||||
<code> public array
|
||||
<strong>getAvailableVideoCodecs</strong>()</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Returns the list of available video codecs for this format.</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td>array</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
</div>
|
||||
<div id="footer">
|
||||
Generated by <a href="http://sami.sensiolabs.org/" target="_top">Sami, the API Documentation Generator</a>.
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
|
|
@ -1,9 +0,0 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<meta name="robots" content="index, follow, all" />
|
||||
<title>FFMpeg\Format\Video | PHP-FFMpeg API</title>
|
||||
<link rel="stylesheet" type="text/css" href="../../../stylesheet.css">
|
||||
</head>
|
||||
</html>
|
||||
|
|
@ -1,461 +0,0 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<meta name="robots" content="index, follow, all" />
|
||||
<title>FFMpeg\Format\VideoInterface | PHP-FFMpeg API</title>
|
||||
<link rel="stylesheet" type="text/css" href="../../stylesheet.css">
|
||||
</head>
|
||||
<body id="class">
|
||||
<div class="header">
|
||||
<ul>
|
||||
<li><a href="../../classes.html">Classes</a></li>
|
||||
<li><a href="../../namespaces.html">Namespaces</a></li>
|
||||
<li><a href="../../interfaces.html">Interfaces</a></li>
|
||||
<li><a href="../../traits.html">Traits</a></li>
|
||||
<li><a href="../../doc-index.html">Index</a></li>
|
||||
|
||||
</ul>
|
||||
|
||||
<div id="title">PHP-FFMpeg API</div>
|
||||
|
||||
<div class="type">Interface</div>
|
||||
<h1><a href="../../FFMpeg/Format.html">FFMpeg\Format</a>\VideoInterface</h1>
|
||||
</div>
|
||||
<div class="content">
|
||||
<p> interface
|
||||
<strong>VideoInterface</strong> implements
|
||||
<a href="../../FFMpeg/Format/AudioInterface.html"><abbr title="FFMpeg\Format\AudioInterface">AudioInterface</abbr></a></p>
|
||||
|
||||
|
||||
|
||||
|
||||
<h2>Methods</h2>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td class="type">
|
||||
string
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_getPasses">getPasses</a>()
|
||||
<p>Returns the number of passes.</p>
|
||||
</td>
|
||||
<td><small>from <a href="../../FFMpeg/Format/FormatInterface.html#method_getPasses"><abbr title="FFMpeg\Format\FormatInterface">FormatInterface</abbr></a></small></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
<abbr title="FFMpeg\Format\array()">array()</abbr>
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_getExtraParams">getExtraParams</a>()
|
||||
<p>Returns an array of extra parameters to add to ffmpeg commandline.</p>
|
||||
</td>
|
||||
<td><small>from <a href="../../FFMpeg/Format/FormatInterface.html#method_getExtraParams"><abbr title="FFMpeg\Format\FormatInterface">FormatInterface</abbr></a></small></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
integer
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_getAudioKiloBitrate">getAudioKiloBitrate</a>()
|
||||
<p>Gets the audio kiloBitrate value.</p>
|
||||
</td>
|
||||
<td><small>from <a href="../../FFMpeg/Format/AudioInterface.html#method_getAudioKiloBitrate"><abbr title="FFMpeg\Format\AudioInterface">AudioInterface</abbr></a></small></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
integer
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_getAudioChannels">getAudioChannels</a>()
|
||||
<p>Gets the audio channels value.</p>
|
||||
</td>
|
||||
<td><small>from <a href="../../FFMpeg/Format/AudioInterface.html#method_getAudioChannels"><abbr title="FFMpeg\Format\AudioInterface">AudioInterface</abbr></a></small></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
string
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_getAudioCodec">getAudioCodec</a>()
|
||||
<p>Returns the audio codec.</p>
|
||||
</td>
|
||||
<td><small>from <a href="../../FFMpeg/Format/AudioInterface.html#method_getAudioCodec"><abbr title="FFMpeg\Format\AudioInterface">AudioInterface</abbr></a></small></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
array
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_getAvailableAudioCodecs">getAvailableAudioCodecs</a>()
|
||||
<p>Returns the list of available audio codecs for this format.</p>
|
||||
</td>
|
||||
<td><small>from <a href="../../FFMpeg/Format/AudioInterface.html#method_getAvailableAudioCodecs"><abbr title="FFMpeg\Format\AudioInterface">AudioInterface</abbr></a></small></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
integer
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_getKiloBitrate">getKiloBitrate</a>()
|
||||
<p>Gets the kiloBitrate value.</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
integer
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_getModulus">getModulus</a>()
|
||||
<p>Returns the modulus used by the Resizable video.</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
string
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_getVideoCodec">getVideoCodec</a>()
|
||||
<p>Returns the video codec.</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
Boolean
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_supportBFrames">supportBFrames</a>()
|
||||
<p>Returns true if the current format supports B-Frames.</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
array
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_getAvailableVideoCodecs">getAvailableVideoCodecs</a>()
|
||||
<p>Returns the list of available video codecs for this format.</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h2>Details</h2>
|
||||
|
||||
<h3 id="method_getPasses">
|
||||
<div class="location">in <a href="../../FFMpeg/Format/FormatInterface.html#method_getPasses"><abbr title="FFMpeg\Format\FormatInterface">FormatInterface</abbr></a> at line 20</div>
|
||||
<code> public string
|
||||
<strong>getPasses</strong>()</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Returns the number of passes.</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td>string</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_getExtraParams">
|
||||
<div class="location">in <a href="../../FFMpeg/Format/FormatInterface.html#method_getExtraParams"><abbr title="FFMpeg\Format\FormatInterface">FormatInterface</abbr></a> at line 27</div>
|
||||
<code> public <abbr title="FFMpeg\Format\array()">array()</abbr>
|
||||
<strong>getExtraParams</strong>()</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Returns an array of extra parameters to add to ffmpeg commandline.</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><abbr title="FFMpeg\Format\array()">array()</abbr></td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_getAudioKiloBitrate">
|
||||
<div class="location">in <a href="../../FFMpeg/Format/AudioInterface.html#method_getAudioKiloBitrate"><abbr title="FFMpeg\Format\AudioInterface">AudioInterface</abbr></a> at line 20</div>
|
||||
<code> public integer
|
||||
<strong>getAudioKiloBitrate</strong>()</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Gets the audio kiloBitrate value.</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td>integer</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_getAudioChannels">
|
||||
<div class="location">in <a href="../../FFMpeg/Format/AudioInterface.html#method_getAudioChannels"><abbr title="FFMpeg\Format\AudioInterface">AudioInterface</abbr></a> at line 27</div>
|
||||
<code> public integer
|
||||
<strong>getAudioChannels</strong>()</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Gets the audio channels value.</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td>integer</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_getAudioCodec">
|
||||
<div class="location">in <a href="../../FFMpeg/Format/AudioInterface.html#method_getAudioCodec"><abbr title="FFMpeg\Format\AudioInterface">AudioInterface</abbr></a> at line 34</div>
|
||||
<code> public string
|
||||
<strong>getAudioCodec</strong>()</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Returns the audio codec.</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td>string</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_getAvailableAudioCodecs">
|
||||
<div class="location">in <a href="../../FFMpeg/Format/AudioInterface.html#method_getAvailableAudioCodecs"><abbr title="FFMpeg\Format\AudioInterface">AudioInterface</abbr></a> at line 41</div>
|
||||
<code> public array
|
||||
<strong>getAvailableAudioCodecs</strong>()</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Returns the list of available audio codecs for this format.</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td>array</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_getKiloBitrate">
|
||||
<div class="location">at line 21</div>
|
||||
<code> public integer
|
||||
<strong>getKiloBitrate</strong>()</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Gets the kiloBitrate value.</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td>integer</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_getModulus">
|
||||
<div class="location">at line 33</div>
|
||||
<code> public integer
|
||||
<strong>getModulus</strong>()</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Returns the modulus used by the Resizable video.</p>
|
||||
<p>This used to calculate the target dimensions while maintaining the best
|
||||
aspect ratio.</p>
|
||||
<div class="tags">
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td>integer</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
<h4>See also</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td>http://www.undeadborn.net/tools/rescalculator.php</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_getVideoCodec">
|
||||
<div class="location">at line 40</div>
|
||||
<code> public string
|
||||
<strong>getVideoCodec</strong>()</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Returns the video codec.</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td>string</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_supportBFrames">
|
||||
<div class="location">at line 49</div>
|
||||
<code> public Boolean
|
||||
<strong>supportBFrames</strong>()</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Returns true if the current format supports B-Frames.</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td>Boolean</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
<h4>See also</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td>https://wikipedia.org/wiki/Video_compression_picture_types</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_getAvailableVideoCodecs">
|
||||
<div class="location">at line 56</div>
|
||||
<code> public array
|
||||
<strong>getAvailableVideoCodecs</strong>()</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Returns the list of available video codecs for this format.</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td>array</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
</div>
|
||||
<div id="footer">
|
||||
Generated by <a href="http://sami.sensiolabs.org/" target="_top">Sami, the API Documentation Generator</a>.
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
|
|
@ -1,9 +0,0 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<meta name="robots" content="index, follow, all" />
|
||||
<title>FFMpeg\Format | PHP-FFMpeg API</title>
|
||||
<link rel="stylesheet" type="text/css" href="../../stylesheet.css">
|
||||
</head>
|
||||
</html>
|
||||
|
|
@ -1,68 +0,0 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<meta name="robots" content="index, follow, all" />
|
||||
<title>FFMpeg\Media | PHP-FFMpeg API</title>
|
||||
<link rel="stylesheet" type="text/css" href="../stylesheet.css">
|
||||
</head>
|
||||
<body id="overview">
|
||||
<div class="header">
|
||||
<ul>
|
||||
<li><a href="../classes.html">Classes</a></li>
|
||||
<li><a href="../namespaces.html">Namespaces</a></li>
|
||||
<li><a href="../interfaces.html">Interfaces</a></li>
|
||||
<li><a href="../traits.html">Traits</a></li>
|
||||
<li><a href="../doc-index.html">Index</a></li>
|
||||
|
||||
</ul>
|
||||
|
||||
<div id="title">PHP-FFMpeg API</div>
|
||||
|
||||
<div class="type">Namespace</div>
|
||||
<h1>FFMpeg\Media</h1>
|
||||
</div>
|
||||
<div class="content">
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="../FFMpeg/Media/AbstractMediaType.html"><abbr title="FFMpeg\Media\AbstractMediaType">AbstractMediaType</abbr></a></td>
|
||||
<td class="last">
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><a href="../FFMpeg/Media/AbstractStreamableMedia.html"><abbr title="FFMpeg\Media\AbstractStreamableMedia">AbstractStreamableMedia</abbr></a></td>
|
||||
<td class="last">
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><a href="../FFMpeg/Media/Audio.html"><abbr title="FFMpeg\Media\Audio">Audio</abbr></a></td>
|
||||
<td class="last">
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><a href="../FFMpeg/Media/Frame.html"><abbr title="FFMpeg\Media\Frame">Frame</abbr></a></td>
|
||||
<td class="last">
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><a href="../FFMpeg/Media/Video.html"><abbr title="FFMpeg\Media\Video">Video</abbr></a></td>
|
||||
<td class="last">
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
<h2>Interfaces</h2>
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="../FFMpeg/Media/MediaTypeInterface.html"><abbr title="FFMpeg\Media\MediaTypeInterface">MediaTypeInterface</abbr></a></td>
|
||||
<td class="last">
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
</div>
|
||||
<div id="footer">
|
||||
Generated by <a href="http://sami.sensiolabs.org/" target="_top">Sami, the API Documentation Generator</a>.
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
Some files were not shown because too many files have changed in this diff Show more
Loading…
Add table
Add a link
Reference in a new issue