Skip to content

Latest commit

 

History

History
137 lines (110 loc) · 6.28 KB

installation.md

File metadata and controls

137 lines (110 loc) · 6.28 KB

Installation

0. Setup MIME-types (optional)

On Linux/Apache servers, create a filed called .htaccess with the following text and upload it to the root of your website

AddType video/ogg .ogv
AddType video/mp4 .mp4
AddType video/webm .webm

On Windows/IIS servers, please follow Microsoft's instructions on how to add/edit MIME types on IIS6 and IIS7.

If you are working with local files and plan to test Flash playback, make sure you go to the Flash Security Settings page and add your working directory. Also, things tend to work best when you use absolute paths.

For more information about how to set up a server to serve media properly and other general and useful topics about dealing with HTML5 video, this article is a good start point.

1. Add Script and Stylesheet

<script src="jquery.js"></script>
<script src="mediaelement-and-player.min.js"></script>
<link rel="stylesheet" href="mediaelementplayer.css" />

Note: to support IE6-8, this code must appear in the <head> tag. If you cannot place the MediaElement.js code in the <head> you need to install something like html5shiv.

If you wish to install the sources in different directories (i.e., all Javascript files in a js, all CSS in a styles, Flash/Silverlight files in plugins, etc.), add the following CSS update after the mediaelementplayer.css reference (only if the images are not in the same folder as the stylesheet):

<link rel="stylesheet" href="/path/to/mediaelementplayer.css" />

<style>
.mejs-overlay-loading, .mejs-container .mejs-controls, 
.mejs-controls .mejs-volume-button .mejs-volume-slider,
.mejs-controls .mejs-captions-button .mejs-captions-selector,
.mejs-captions-text, .mejs-controls .mejs-sourcechooser-button .mejs-sourcechooser-selector,
.mejs-postroll-layer, .mejs-postroll-close,
.mejs-controls .mejs-speed-button .mejs-speed-selector {
    background: url("/path/to/background.png");
}

.no-svg .mejs-overlay-button {
    background-image: url("/path/to/bigplay.png");
}

.no-svg .mejs-controls .mejs-button button {
	background-image: url("/path/to/controls.png");
}

.mejs-controls .mejs-button.mejs-jump-forward-button {
    background: transparent url("/path/to/jumpforward.png") no-repeat 3px 3px;
}

.mejs-controls .mejs-button.mejs-skip-back-button {
    background: transparent url("/path/to/skipback.png") no-repeat 3px 3px;
}

.mejs-overlay-button {
    background: url("/path/to/bigplay.svg") no-repeat;
}

.mejs-controls .mejs-button button {
    background-image: url("/path/to/controls.svg");
}
</style>

Also, update pluginPath within the configuration options (visit Usage and Tips and API and Configuration for more details) with the location of the Flash/Silverlight files to make shim mode to work. Also, update flashName and silverlightName configuration options only if those files were renamed.

2. Add <video> or <audio> tags

If your users have JavaScript and/or Flash, the easiest route for all browsers and mobile devices is to use a single MP4 or MP3 file.

<video src="myvideo.mp4" width="320" height="240"></video>
<audio src="myaudio.mp3"></audio>

Multiple codecs (Optional)

This includes multiple codecs for various browsers (H.264 for IE9+, Safari, and Chrome, WebM for Firefox 4 and Opera, Ogg for Firefox 3).

<video width="320" height="240" poster="poster.jpg" controls="controls" preload="none">
	<source type="video/mp4" src="myvideo.mp4" />
	<source type="video/webm" src="myvideo.webm" />
	<source type="video/ogg" src="myvideo.ogv" />
</video>

Browsers with JavaScript disabled (Optional)

In very rare cases, you might have a non-HTML5 browser with Flash turned on and JavaScript turned off. In that specific case, you can also include the Flash <object> code.

<video width="320" height="240" poster="poster.jpg" controls="controls" preload="none">
	<source type="video/mp4" src="myvideo.mp4" />
	<source type="video/webm" src="myvideo.webm" />
	<source type="video/ogg" src="myvideo.ogv" />
	<object width="320" height="240" type="application/x-shockwave-flash" data="flashmediaelement.swf">
		<param name="movie" value="flashmediaelement.swf" /> 
		<param name="flashvars" value="controls=true&amp;poster=myvideo.jpg&amp;file=myvideo.mp4" /> 		
		<img src="myvideo.jpg" width="320" height="240" title="No video playback capabilities" />
	</object>
</video>

Use of Closed Captioning (Optional)

The way to setup closed captioning is by using the track tag as follows:

<video ...>
    <source ...>
    ... 
    <track src="subtitles_en.[srt|vtt]" kind="[subtitles|captions|chapters]" srclang="en" label="English">
    <track src="subtitles_es.[srt|vtt]" kind="[subtitles|captions|chapters]" srclang="es" label="Spanish">
    ...
</video>

This works perfectly on any browser that supports HTML5 natively; however, to make this work across browsers, an AJAX request is performed to parse the content of the subtitles file.

That's why is important to put the caption files in the same domain as the player is. Otherwise, the request of the file will be denied.

As a final note, to display closed captioning in iOS, they will need to be transcoded it in the video. To learn more about this topic, please read The Zencoder guide to closed captioning for web, mobile, and connected TV


Back to Main