ffmpeg-mappable-media/README.md
2012-05-31 16:25:42 +02:00

764 B

#PHP FFmpeg

Build Status

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

##Documentation

Read The Documentation at Read The Docs !

##API Browser

Browse the API

##Usage Example

<?php
$x264 = new X264();
$x264->setDimensions(320, 240);

$ffmpeg->open('Video.mpeg')
    ->encode($new WebM(), 'file.webm')
    ->encode($x264, 'file.mp4')
    ->encode($new Ogg(), 'file.ogv')
    ->close();

##License

This project is licensed under the MIT license.