Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/anandrmedia/phpmp4
A simple lightweight php library for converting videos into HTML5 Mp4 video format
https://github.com/anandrmedia/phpmp4
Last synced: 2 months ago
JSON representation
A simple lightweight php library for converting videos into HTML5 Mp4 video format
- Host: GitHub
- URL: https://github.com/anandrmedia/phpmp4
- Owner: anandrmedia
- License: mit
- Created: 2015-07-26T07:03:27.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2015-07-26T12:47:22.000Z (over 9 years ago)
- Last Synced: 2024-04-19T13:01:38.172Z (9 months ago)
- Language: PHP
- Size: 137 KB
- Stars: 4
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# phpmp4
A simple lightweight php library for converting videos into HTML5 Mp4 video format##Requirements
Requires the latest ffmpeg or avconv with libx264## Usage
Include src\PHPMp4\PHPMp4.php```php
$video = new \PHPMp4\PHPMp4('test.wmv');
try{
$video->convertVideo();
}catch(Exception $e){
echo 'error '.$e->getMessage();
}```