phpmp4/phpmp4

PHPMp4 is a simple lightweight library for converting videos into HTML5 Mp4 video format

Maintainers

Package info

github.com/anandrmedia/phpmp4

Issues

pkg:composer/phpmp4/phpmp4

Transparency log

Statistics

Installs: 21

Dependents: 0

Suggesters: 0

Stars: 4

v0.1-alpha 2015-07-26 07:28 UTC

This package is auto-updated.

Last update: 2026-06-29 01:01:38 UTC


README

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();
	}