What works in Flash? If this works in Wowza LiveVideoStreaming player:
Server: rtmp://[wowza-address]:1935/ThePublishingPoint
Stream: ThePublishingPoint.sdp
Then this will work in iOS
Code:
http://[wowza-address]:1935/ThePublishingPoint/_definst_/ThePublishingPoint.sdp
You will have to start the stream ThePublishingPoint.sdp in StreamManager on the application ThePublishingPoint with MediaCaster type "rtp" to play back in iOS
Use HTML video tag:
Code:
<html>
<head>
<title>Cupertino Streaming</title>
</head>
<body>
<video controls src="http://[wowza-address]:1935/ThePublishingPoint/_definst_/ThePublishingPoint.sdp">
</video>
</body>
</html>
Richard