How to play wowza live video on ipad

Install Wowza Examples

Take care for common problems:

Do you have the Application.xml in the right place?
[wowza-install-dir]/conf/[appName]/Application.xml

Server URL: rtmp://[wowza-address]/live
Stream Name: livestream

Which format need to broadcast from FMLE?
For iOS streaming, you’ll need h.264 baseline profile 3.0 on the video side and AAC on the audio side.

what is playlist.m3u8?
With Wowza cupertinostreaming…
http://[wowza-address]:1935/live/livestream/playlist.m3u8

Sample Code with HTML5 JWPlayer Support

<script type="text/javascript" src="jwplayer.js"></script> 

<div id='mediaplayer'></div>

<script type="text/javascript">  

jwplayer('mediaplayer').setup({
    'id': 'playerID',    'width': '623',    'height': '365',
    'provider': 'rtmp',  
    'streamer': 'rtmp://[wowza-address]/live',
    'autostart': 'true',
    'stretching': 'exactfit',  

    levels: [{
              bitrate: "500",
              file: "livestream",
              width: "800"
              }, {
              bitrate: "800",
              file: "livestream",
              width: "1280"
              }],   
               
    'modes': [
         {type: 'flash', src: 'player.swf'},
         {
          type: 'html5',
          config: {
           levels: [ {'file': 'http://[wowza-address]:1935/live/livestream/playlist.m3u8'} ],
           'provider': 'video'
          }
        }
    ]
  });
 
</script>

To play using Adobe Flash player (RTMP)

Server: rtmp://[wowza-address]/vod
Stream: mp4:sample.mp4

To play using RTSP/RTP player or device
rtsp://[wowza-address]:1935/vod/mp4:sample.mp4

To play using an Apple iDevice (Cupertino/Apple HTTP Live Streaming)

http://[wowza-address]:1935/vod/mp4:sample.mp4/playlist.m3u8

How to set up live streaming using an RTMP based encoder