Results 1 to 7 of 7

Thread: HTML5 Streaming to android

  1. #1
    Join Date
    Apr 2011
    Posts
    21

    Default HTML5 Streaming to android

    Hello,

    I have an html5 audio/video web-app that is intended for use on tablet devices. I've got it working very well on ipad, but I can't get it to stream to an android device. In the metadata it returns the length of the video as only being 1 second. I am assuming that this is because android does not support cupertino streaming. My question is what is the correct application configurations for streaming to an android tablet using HTML5. Also what is the proper syntax for the html source element on an android device.

    Thanks

  2. #2
    Join Date
    Dec 2007
    Posts
    25,690

    Default

    You can use RTSP in most or all Androids, or you can use Flash application and do RTMP or Sanjose (Flash HTTP) streaming.

    Richard

  3. #3
    Join Date
    Apr 2011
    Posts
    21

    Default

    Thanks for your reply. I have 2 follow up questions.
    1. In your tutorials, rtsp streams are used with live feed. My app is vod app. Does RTSP work with VOD applications?

    2. Since you suggested this as a solution to my problem i am assuming that this can work with html5 video. What should i set as teh video tags src attribute?

  4. #4
    Join Date
    Apr 2011
    Posts
    21

    Default

    Flash is not an option

  5. #5
    Join Date
    Dec 2007
    Posts
    25,690

    Default

    Yes, RTSP out works for vod.

    rtsp://[wowza-address]:1935/vod/sample.mp4

    Wowza Cupertino for iOS uses HTML5 video tag, but that is the only association with Wowza. Works in iOS browser:

    Code:
    <html>
    <head> 
      <title>Cupertino Streaming</title>
    </head>
    
    <body>
    <video controls src="http://[wowza-address]:1935/vod/sample.mp4/playlist.m3u8">
    </video>
    
    </body>
    </html>
    Richard

  6. #6
    Join Date
    Apr 2011
    Posts
    21

    Default

    I just want to make sure i understand this. Wowza does not have support for streaming to an html5 video tag on an android device, correct?

  7. #7
    Join Date
    Dec 2007
    Posts
    25,690

    Default

    That's right. Just Cupertino streaming to iOS devices. Use RTSP for Android.. Or on Android 2.2+ you can do Flash RTMP or Flash HTTP (Sanjose)

    Richard

Tags for this Thread

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •