Skip to content

Latest commit

 

History

History
20 lines (14 loc) · 346 Bytes

README.md

File metadata and controls

20 lines (14 loc) · 346 Bytes

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

	$video = new \PHPMp4\PHPMp4('test.wmv');

	try{
		$video->convertVideo();
	}catch(Exception $e){
		echo 'error '.$e->getMessage();
	}