Closed (works as designed)
Project:
MediaFront
Version:
7.x-2.x-dev
Component:
Code
Priority:
Major
Category:
Bug report
Assigned:
Unassigned
Reporter:
Created:
3 Apr 2014 at 21:43 UTC
Updated:
16 Apr 2014 at 21:11 UTC
Jump to comment: Most recent
Comments
Comment #1
markj commentedJust tested on a recent model iPad, same problem.
Comment #2
markj commentedCan anyone else confirm this problem? This is a showstopper for us using MediaFront, so I'd be happy to put some resources into troubleshooting/fixing the issue, but I'd really appreciate it if others could verify the behaviour.
Also bumping the priority up to Major since iOS is obviously a major proportion of devices that require HTML5.
Comment #3
markj commentedI've confirmed that the issue occurs when I use OSM Player on its own (i.e., not from within the Drupal module).
Also, some results of testing the example videos at http://mediafront.org/osmplayer/ in Safari running on an iOS 7.1 iPad:
Comment #4
jons commentedHi, things to consider (which you might have already):
- does vid play if loaded on iPhone etc and played locally - if not then its a codec issue
- set up a simple page to play the video using the HTML video tag
<video width="480" height="320" controls autoplay><source src="http://xxx.com/ppp/vvv.mp4">Your browser does not support the video tag.</video>Test with browser, if OK then test on iPhone. If broken on iPhone then its not mf specifically.
(BTW mf is most likely using the same basic code, if browser supports it, which most will, but this check removes any of the extra javascript processing mf does)
-iPhone etc use the Range Retrieval sub-protocol, which is needed for D6 public & private files & D7 private files. See https://drupal.org/project/resumable_download. (may need a patch as you're using D7)
Comment #5
markj commentedWe're using Drupal's private file system. Not having Resumable Download was the issue. After installing it iOS can play the media. Thanks very much!