Skip to content
Xemle edited this page Aug 9, 2013 · 4 revisions

html5-video-php is a simple ffmpeg wrapper to convert HTML5 videos to support common mobile devices and desktop browser.

FFMPEG Option Syntax Changes

ffmpeg 0.8

-formats option split into -formats, -codecs, -bsfs, and -protocols. To read all available codecs use -formats for ffmpeg < 0.8.

ffmpeg 0.9

-c (or -codec) was introduced for choosing the decoder/encoder with -c:v for video codec and -c:a for audio codec. Before it was -vcodec and -acodec.

Also bitrate option -b:v and -b:a were introduced to drop -b and -ab.

x264 preset option -vpre is replaced by -pre:v.

Video -filter was replaced by -vf

See README.md file for more information.

Clone this wiki locally