Extension to php-ffmpeg to provide greater control over mapped output https://packagist.org/packages/danjones000/ffmpeg-mappable-media
Find a file
2012-05-31 16:08:40 +02:00
docs Update API documentation 2012-05-31 15:57:33 +02:00
src/FFMpeg FFProbe now returns Json 2012-05-31 15:54:28 +02:00
tests Rename Interfaces 2012-05-30 12:24:25 +02:00
.gitignore Remove mandatory dimensions 2012-05-25 18:24:37 +02:00
.travis.yml Update travis builds 2012-05-31 12:52:47 +02:00
buildAPI.sh Add API tool and configuration 2012-05-31 12:19:23 +02:00
composer.json Add API builder 2012-05-30 12:09:30 +02:00
composer.lock Update process 2012-05-31 12:33:54 +02:00
LICENSE Add License 2012-04-13 14:34:53 +02:00
phpunit.xml.dist Add API builder 2012-05-30 12:09:30 +02:00
README.md Add PHP tag for color highlighting 2012-05-31 16:08:40 +02:00
sami_configuration.php Update API name 2012-05-31 12:29:33 +02:00
vendors.win.php Add vendors script for window CI 2012-04-17 20:32:30 +02:00

#PHP FFmpeg

Build Status

An Object Oriented library to convert video/audio files with AVConv / FFmpeg.

##Documentation

Read The Documentation at http://readthedocs.org/docs/ffmpeg-php/ !

##Usage Example

<php
$WebMFormat = new Format\Video\WebM();
$x264Format = new Format\Video\X264();
$OggFormat  = new Format\Video\Ogg();

$x264->setDimensions(320, 240);

$ffmpeg->open('Video.mpeg')
    ->encode($WebMFormat, 'file.webm')
    ->encode($x264Format, 'file.mp4')
    ->encode($OggFormat, 'file.ogv')
    ->close();

##License

This project is licensed under the MIT license.