-
Notifications
You must be signed in to change notification settings - Fork 64
Home
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.
-formats
option split into -formats
, -codecs
, -bsfs
, and -protocols
. To read all available codecs use -formats
for ffmpeg < 0.8.
-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.