2015-02-11
1.0.0
racribeiro
9.0.0.23
All
All
Components, Widgets
[Overview]
HTML5 & Javascript Web Video Player
[Detail]
CDN based Web Player based on VideoJS
It is HTML5 based and compatible with most desktop and mobile browsers.
Sometimes, video formats are tricky. Be sure to use videos encoded with the correct codec format, parameters, bitrate and geometry.
You may produce Videos to play on every device using the following avconv command lines:
To produce MP4 video file:
avconv -i original_file.avi \
-vcodec libx264 -vprofile high -preset slow -b:v 1000k\
-maxrate 1000k -bufsize 2000k -acodec libvo_aacenc \
-vf setpts=0.25*PTS -r 30 \
-ac 2 -ab 112k final_file.mp4
To produce WebM video file:
avconv -i original_file.avi \
-c:v libvpx -minrate 1M -maxrate 1M -b:v 1M final_file.webm