# RTSP Stream to IOS

**URL:** https://community.wowza.com/t/rtsp-stream-to-ios/37807
**Category:** Wowza Streaming Engine
**Created:** [December 10, 2011, 2:56pm UTC](https://community.wowza.com/t/rtsp-stream-to-ios/37807 "2011-12-10T14:56:43Z")
**Posts on this page:** 7
**Page:** 1

<div class="post-metadata">

### Author: ![a\_a2](https://avatars.discourse-cdn.com/v4/letter/a/a183cd/32.png) [@a\_a2](https://community.wowza.com/u/a_a2)
#### Post date: [December 10, 2011, 2:56pm UTC](https://community.wowza.com/t/rtsp-stream-to-ios/37807/1 "2011-12-10T14:56:43Z")

</div>

My English is very poor,can you help me,thank you.

I’m programing a ios app by flex,which to see IP camera.

The IP camera only support RTSP, and I’m convert to RMTP by WOWZA.

I can see the video in flex simulator,but can’t see the video in IPad.

why?

Help me,thank you.

---

<div class="post-metadata">

### Author: ![Randall\_Auriemma](https://avatars.discourse-cdn.com/v4/letter/r/85e7bf/32.png) [@Randall\_Auriemma](https://community.wowza.com/u/Randall_Auriemma)
#### Post date: [December 10, 2011, 7:41pm UTC](https://community.wowza.com/t/rtsp-stream-to-ios/37807/2 "2011-12-10T19:41:09Z")

</div>

Hello,

RTMP is a Flash protocol which is not supported on iDevices. You can use [Cupertino streaming](https://www.wowza.com/docs/how-to-install-and-configure-wowza-streaming-engine#cupertinostreaming).

---

<div class="post-metadata">

### Author: ![Randall\_Auriemma](https://avatars.discourse-cdn.com/v4/letter/r/85e7bf/32.png) [@Randall\_Auriemma](https://community.wowza.com/u/Randall_Auriemma)
#### Post date: [December 11, 2011, 7:39pm UTC](https://community.wowza.com/t/rtsp-stream-to-ios/37807/3 "2011-12-11T19:39:00Z")

</div>

Hi again,

I can’t find any example of RTMP video streaming working on iDevices. But, it looks like people are working on a solution. Can you provide a link to a working example?

Is there some reason that you can’t use Cupertino streaming?

---

<div class="post-metadata">

### Author: ![Randall\_Auriemma](https://avatars.discourse-cdn.com/v4/letter/r/85e7bf/32.png) [@Randall\_Auriemma](https://community.wowza.com/u/Randall_Auriemma)
#### Post date: [December 12, 2011, 5:33pm UTC](https://community.wowza.com/t/rtsp-stream-to-ios/37807/4 "2011-12-12T17:33:52Z")

</div>

You can use the Push Publishing Addon to push an RTMP stream to FMS: [https://www.wowza.com/docs/how-to-push-streams-to-cdns-and-other-services-push-publishing](https://www.wowza.com/docs/how-to-push-streams-to-cdns-and-other-services-push-publishing)

Or you can use some Server Side Actionscript in FMS to pull a regular live RTMP stream from Wowza. Something like this:

```auto
myCon = new NetConnection();
myCon.connect("rtmp://[Wowza Server IP]/live");
myStream = Stream.get("myStream");
myStream.play("myStream.sdp", -1, -1, true, myCon);

```

---

<div class="post-metadata">

### Author: ![a\_a2](https://avatars.discourse-cdn.com/v4/letter/a/a183cd/32.png) [@a\_a2](https://community.wowza.com/u/a_a2)
#### Post date: [December 11, 2011, 5:59am UTC](https://community.wowza.com/t/rtsp-stream-to-ios/37807/5 "2011-12-11T05:59:22Z")

</div>

randall,thank for your help.

But when I used FMS to provide a video stream which from an other IPAD’s camera or my notebook’s camera,I can see the video in IPAD.

My IP camera is provide H.264 stream.

---

<div class="post-metadata">

### Author: ![a\_a2](https://avatars.discourse-cdn.com/v4/letter/a/a183cd/32.png) [@a\_a2](https://community.wowza.com/u/a_a2)
#### Post date: [December 12, 2011, 6:31pm UTC](https://community.wowza.com/t/rtsp-stream-to-ios/37807/6 "2011-12-12T18:31:33Z")

</div>

Hi randall.

I don’t know any example like you want.

But I were make a IOS client by Flex Mobile not long ago, which can send local video to each other.

Client A use Flex’s NetConnection.Connect(“rtmp://url”) to connect FMS,

then use NetStream.publish(“appName”) to publish video and audio stream to FMS.

Client B use same mode to connect FMS.

and NetStream.Play(“appName”) to play the video and audio.

Does it use RTMP stream?

I’ll try to write a FLEX server app to get stream from WOWZA and publish to FMS.I’ll tell you later.

---

<div class="post-metadata">

### Author: ![a\_a2](https://avatars.discourse-cdn.com/v4/letter/a/a183cd/32.png) [@a\_a2](https://community.wowza.com/u/a_a2)
#### Post date: [December 12, 2011, 6:41pm UTC](https://community.wowza.com/t/rtsp-stream-to-ios/37807/7 "2011-12-12T18:41:47Z")

</div>

But, randall.Can I push a stream from WOWZA to FMS with out other app?
