Tagged Questions
3
votes
4answers
3k views
Stopping instead of rewinding at the end of a video in MediaElement.js
I'm wondering how to stop the MediaElement.js player at the end of the video. I wondered how to stop the mediaelement.js player at the end of a video. I was hoping to hold on the last frame and not ...
3
votes
1answer
389 views
MediaElement.js - Best cross-browser filetype/encoding to use?
I've implemented a video player in my website using MediaElement.js. Users can upload videos to the site, and the player allows them to watch the videos in-browser on the site.
I've run into issues, ...
3
votes
2answers
808 views
HTML5 video element request stay pending forever (on chrome)
I have a weird issue in Chrome.
Each time I load a <video> element, chrome will start two HTTP request.
The first one will stay pending forever (I guess this is the "meta-data", "partial ...
3
votes
1answer
418 views
WebM not falling back to Flash in browsers not supporting it with mediaelement.js
I am trying to use mediaelement.js to show videos in HTML5 with fallback to Flash if browsers don't support it.
It says that when a codec is not supported it will fallback automatically, but it ...
2
votes
2answers
4k views
Specified “type” attribute of “video/mp4” is not supported
I am using mediaelement js..
on my .htacces I have these..
AddType video/mp4 mp4 m4v
AddType audio/mp4 m4a
AddType video/ogg ogv
AddType audio/ogg ogg oga
AddType video/webm webm
and on my ...
2
votes
1answer
1k views
MediaElement.js setSrc() Loading The File But Not Changing pluginType
I'm working on a page that uses mediaelement.js to play mp3/mp4/wmv (yes, we have a lot of wmv). I have a list of links and those links should change the player. My effort is to make the changes to ...
2
votes
2answers
621 views
Can HTML5 track element be used for *live* subtitles?
I am planning to build a system to broadcast public events (trials, meetings, conferences).
A key request will be the insertion of live subtitles to the A/V stream.
The subtitles will be "live" ...
2
votes
0answers
193 views
Not able to catch on play , pause event of video and audio mediaelement.js in case of IPAD or Iphone
I am trying the method suggested here Avoid stoping audio or video .
My intention is to Check whether video or audio is playing or not , if its playing all of my links in that page should open in a ...
2
votes
1answer
100 views
Mediaelement.js loading wrong format Ffox (MAC)
I`m using mediaelement.js library to display videos. The issue is that for Firefox 3.6.13 on MAC the library loads the .mp4 version of the video and not the .ogv version (wich when loaded is displayed ...
2
votes
0answers
246 views
MediaElement.js and Amazon S3
My videos on Amazon S3 will not play through MediaElement.js. I get a black video player with the 'Download File' link. This behavior is consistent on Firefox and Chrome with a variety of video ...
2
votes
0answers
116 views
JQuery SerialScroll potential plugin conflict with video player MediaElement.js
I have a small issue happening that is potentially due to two plug-ins interfering. They work together just fine with defaults out of the box.
I'm using JQuery SerialScroll to control a horizontal ...
2
votes
0answers
376 views
Issues playing video files using MVC FileStream
I'm trying to use the following code to retrieve video files to play to a user:
public class VideoController : Controller
{
public VideoResult GetMP4Video(string videoID)
{
if ...
2
votes
0answers
502 views
Mediaelement Fullscreen Flash Fallback does not scale in IE7 or IE8
I have a video slide player I developed using MediaElement JS and some custom jQuerry.
Everything about the player works great and does exactly what I needed it to do, except for one thing.
When in ...
1
vote
1answer
442 views
Pre-fetching / caching videos for later playing
How can I force the browser to begin downloading a video stream (or video file) without triggering it to play immediately? Please note, I will want to play this video to the user - but not ...
1
vote
1answer
90 views
Does mediaelementjs support a single mp4 h264 video accross all platforms?
I need something that works like videojs that supports native HTML5 when possible, and falls back to flash on browsers that don't support h264 natively. I have videojs working, but because I also need ...