Menu
  • HOME
  • TAGS

Media Element audio player - embed M3U playlist

html5,audio,mediaelement.js

I ended up using this plugin as a workaround... https://github.com/duozersk/mep-feature-playlist...

Does the Silverlight player support H264/MultiView Coding (3D) Videos?

silverlight,mediaelement.js,ms-media-foundation

Quick Answer: 'Absolutely' I will take a quick hack at this question, only because I use Media Foundation a great deal, and I believe your question is mostly focused on Media Foundation's support for 3D video. I have not used Silverlight's player, nor have I utilized the 3D video capabilities...

mediaelement.js - How to change width

javascript,audio,media-player,mediaelement.js,mediaelement

you can find the option at the API list // if the <video width> is not specified, this is the default defaultVideoWidth: 480, // if the <video height> is not specified, this is the default defaultVideoHeight: 270, // if set, overrides <video width> videoWidth: -1, // if set, overrides <video...

How to detect pause button click in mediaelement?

jquery,mediaelement.js

You need to add an event listener to MEJS initialization script on success setting like : var player = new MediaElementPlayer('.player_1', { success: function (mediaElement, domObject) { mediaElement.addEventListener('pause', function () { // do something here $('.items').append('<li>paused</li>'); }, false); } }); See your forked JSFIDDLE...

Is mediaelement.js compatible with Phonegap?

javascript,cordova,html5-video,phonegap-plugins,mediaelement.js

Is mediaelement.js compatible with phonegap? Yes, they are compatible. I have seen them used together on projects. PhoneGap can be difficult to configure properly to work with other JS libraries b/c of the extent to which PhoneGap binds its own events to manage the environment. Without knowing more about...

Play from an arbitrary position using MediaElement.js for HTML5 video

javascript,jquery,html5,video,mediaelement.js

The previous answer suggested to use currentTime(), which is a get/set method in HTML5 but only a get method in MEJS. You should rather use (MEJS') setCurrentTime(), to set the starting time so, having a button like <button class="button" id="play">play : starts at 8 seconds</button> ... you could use this...

Iframe fullscreen internet explorer

internet-explorer,video,fullscreen,mediaelement.js,jplayer

Looking at the code from John Dyer lab he is testing for the cancelFullScreen method with or without vendor prefix to determine native fullscreen support. This is outdated as of today for some browser (it was never valid for IE) - W3C went with exitFullscreen and so most vendor prefix...

mediaelementjs play button

jquery,mediaelement.js

This is because the image for the play button is 'not found'. The path to the 'controls.svg' file could be wrong. It is currently looking for the image in http://www.newlifedeewhy.com/media/build/controls.svg If the file is in the correct place, this could be a server configuration, is the svg mime type set?...

mediaelement.js: Not working in IE8 - no flashfallback?

mediaelement.js

After some more research I got the solution for myself. Im a noob - the flashplayer was not updated. Here are two maybe useful hints i needed for mediaelement.js: 1. The flashfallback works only if there is also a <source> Element for some other format in the <video> element and...