MediaElement.js – HTML5 Video & Audio Player

Wordpress Plugin
Download latest - 4.2.8

Developers

johndyer

Download Stats

Today 53
Yesterday 111
Last Week 652
All Time 572,907


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.

Typical Usage for video

[video src="http://mysite.com/mymedia.mp4" width="640" height="360"]

Typical Usage for audio

[audio src="http://mysite.com/mymedia.mp3"]

Shortcode Options

Alternatives

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"]

src

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"]

type

The media type of the resource

[video src="http://mysite.com/mymedia?xyz" type="video/mp4"]

mp4

The location of the h.264/MP4 source for the video.

[video mp4="http://mysite.com/mymedia.mp4"]

mp3

The location of an MP3 file for video

[audio mp3="http://mysite.com/mymedia.mp3"]

ogg

The location of the Theora/Ogg source for the video.

[video ogg="http://mysite.com/mymedia.ogg"]

webm

The location of the VP8/WebM source for the video.

[video webm="http://mysite.com/mymedia.webm"]

poster

The location of the poster frame for the video.

[video poster="http://mysite.com/mymedia.png"]

width

The width of the video

[video width="640"]

height

The height of the video

[video height="264"]

loop

Loops the video or audio when it ends

[video src="http://mysite.com/mymedia.mp4" loop="true"]

preload

Start loading the video as soon as possible, before the user clicks play.

[video preload="true"]

autoplay

Start playing the video as soon as it's ready.

[video autoplay="true"]

fullscreen

Disables the fullscreen button

[video src="http://mysite.com/mymedia.mp4" fullscreen="false"]

duration

Disables the duration output

[video src="http://mysite.com/mymedia.mp4" duration="false"]

volume

Disables the volume slider

[video src="http://mysite.com/mymedia.mp4" volume="false"]

progress

Disables the progress bar

[video src="http://mysite.com/mymedia.mp4" progress="false"]

captions

URL to a WebSRT captions file

[video src="http://mysite.com/mymedia.mp4" captions="http://mysite.com/mymedia.srt"]

Simple Video

Basic playback options

[video src="http://mysite.com/mymedia.mp4" width="640" height="360"]

All Attributes Video

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"]

Simple Audio

Basic playback options

[audio src="http://mysite.com/mymedia.mp3"]

All Attributes Audio

All options enabled

[audio mp3="http://mysite.com/mymedia.mp3" ogg="http://mysite.com/mymedia.ogg" preload="true" autoplay="true"]

Use in a template

You can use Wordpress shortcodes in your templates using the do_shortcode function.

<?php echo do_shortcode('[video src="myvfile.mp4"]'); ?>


Releases (16 )

Version Release Date Change Log
4.2.8 2018-01-16
  • Updating to latest 4.x version
2.23.5 2017-11-12
  • Updating to final version of 2.x line (Wordpress 4.9 will have the 4.x branch)
  • Updated screenshot
2.10.3 2013-01-27

None

2.5.0 2013-01-27

None

2.9.1 2012-06-01

None

2.7.0 2012-03-12

None

2.2.5 2011-10-22
  • Update to 2.2.5 codebase
  • Support for true fullscreen in Chrome and Firefox (in addition to Safari)
  • Support for 100% sizing
2.1.7 2011-07-19
  • Skin selector (default, WMP, TED)
  • Audio height and width
  • Leave off the extension on the src attribute and files will be automatically detected
2.1.6 2011-07-19

None

2.1.5 2011-05-28

None

2.1.4 2011-05-27
  • Updated to latest MediaElement.js code
  • Changed scripts to use wp_enqueue_script("mediaelementjs-scripts")
  • Changed styles to use wp_enqueue_style("mediaelementjs-styles")
  • Added [mejsaudio] and [mejsvideo] as valid short codes. Wordpress's Jetpack will now take over [audio]
2.1.2 2011-03-24

None

2.1.0 2011-02-23

None

2.0.6.2 2011-02-05

None

2.0.5 2011-02-05
  • Lots of minor changes to JS code
  • better IE6 support
2.0.6 2011-02-05

None