Skip to main content
November 17, 2011
Answered

HTTP Live Streaming for Apple IOS devices

  • November 17, 2011
  • 1 reply
  • 1132 views

HI,

We have installed FMS 4.5, including Apache 2.2, on a 64-bit Windows 2008 R2 server following the instructions given in the video that can be viewed here:

http://www.adobe.com/devnet/flashmediaserver/articles/install-verify.html

Browsing to the test page for the server works fine for HTTP Dynamic Streaming and RTMP Dynamic Streaming samples.  However, when we try to use the HTTP Live streaming samples on the test web page on an iPad via AnyConnect, we only see a blank page with a small Abobe Flash icon in the top left hand corner which is basically saying that Flash has been detected on the page and is not supported by the iPad.

The above video shows HLS working on an iPad with no additional installation steps.  Can anyone hep?

This topic has been closed for replies.
Correct answer

Found the answer

The home page on the Adobe server has an error in its javascript.

if (uagent.search('iphone') != -1 || uagent.search('ipad') != -1) {

should be

if (uagent.search('iPhone') != -1 || uagent.search('iPad') != -1) {

....capital P's.

1 reply

Correct answer
November 17, 2011

Found the answer

The home page on the Adobe server has an error in its javascript.

if (uagent.search('iphone') != -1 || uagent.search('ipad') != -1) {

should be

if (uagent.search('iPhone') != -1 || uagent.search('iPad') != -1) {

....capital P's.