>
Download This Plugin | |
Download Elegant Themes | |
Name | MediaElement.js - HTML5 Video & Audio Player |
Version | 2.10.3 |
Author | John Dyer |
Rating | 94 |
Last updated | 2013-01-27 09:52:00 |
Downloads |
525759
|
Download Plugins Speed Test plugin for Wordpress |
Home page PageSpeed score has been degraded by 0%, while Post page PageSpeed score has been degraded by 0%
MediaElement.js - HTML5 Video & Audio Player plugin added 85 kB of resources to the Home page and 85 kB of resources to the sample Post page.
MediaElement.js - HTML5 Video & Audio Player plugin added 0 new host(s) to the Home page and 0 new host(s) to the sample Post page.
Great! MediaElement.js - HTML5 Video & Audio Player plugin ads no tables to your Wordpress blog database.Video and audio plugin for WordPress built on the MediaElement.js HTML5 media player library. Provides Flash or Silverlight fallback players for non-HTML5 browsers. Supports iPhone, iPad, and Andriod. Supports MP4, OGG, WebM, WMV, MP3, WAV, WMA files as well as captions with WebSRT files.
Check out mediaElementjs.com for more information and examples.
[video src="http://mysite.com/mymedia.mp4" width="640" height="360"]
[audio src="http://mysite.com/mymedia.mp3"]
If you have a plugin that conflicts with MediaElement.js, you can also use the short codes
[mejsvideo src="http://mysite.com/mymedia.mp4" width="640" height="360"]
[mejsaudio src="http://mysite.com/mymedia.mp3"]
This location of any audio or video file
[video src="http://mysite.com/mymedia.mp4"]
You can also leave off the extention and MediaElement.js will look for all media files matching the filename (mymedia.mp4, mymedia.webm, etc.)
[video src="http://mysite.com/mymedia"]
The media type of the resource
[video src="http://mysite.com/mymedia?xyz" type="video/mp4"]
The location of the h.264/MP4 source for the video.
[video mp4="http://mysite.com/mymedia.mp4"]
The location of an MP3 file for video
[audio mp3="http://mysite.com/mymedia.mp3"]
The location of the Theora/Ogg source for the video.
[video ogg="http://mysite.com/mymedia.ogg"]
The location of the VP8/WebM source for the video.
[video webm="http://mysite.com/mymedia.webm"]
The location of the poster frame for the video.
[video poster="http://mysite.com/mymedia.png"]
The width of the video
[video width="640"]
The height of the video
[video height="264"]
Loops the video or audio when it ends
[video src="http://mysite.com/mymedia.mp4" loop="true"]
Start loading the video as soon as possible, before the user clicks play.
[video preload="true"]
Start playing the video as soon as it's ready.
[video autoplay="true"]
Disables the fullscreen button
[video src="http://mysite.com/mymedia.mp4" fullscreen="false"]
Disables the duration output
[video src="http://mysite.com/mymedia.mp4" duration="false"]
Disables the volume slider
[video src="http://mysite.com/mymedia.mp4" volume="false"]
Disables the progress bar
[video src="http://mysite.com/mymedia.mp4" progress="false"]
URL to a WebSRT captions file
[video src="http://mysite.com/mymedia.mp4" captions="http://mysite.com/mymedia.srt"]
Basic playback options
[video src="http://mysite.com/mymedia.mp4" width="640" height="360"]
All options enabled
[video mp4="http://mysite.com/mymedia.mp4" ogg="http://mysite.com/mymedia.ogg" webm="http://mysite.com/mymedia.webm" poster="http://mysite.com/mymedia.png" preload="true" autoplay="true" width="640" height="264"]
Basic playback options
[audio src="http://mysite.com/mymedia.mp3"]
All options enabled
[audio mp3="http://mysite.com/mymedia.mp3" ogg="http://mysite.com/mymedia.ogg" preload="true" autoplay="true"]
You can use Wordpress shortcodes in your templates using the do_shortcode function.
<?php echo do_shortcode('[video src="myvfile.mp4"]'); ?>