I’m using a program on my Mac called Evocam. It creates an rtsp stream from my camera and microphone. The stream URL looks like rtsp://10.10.12.246:8080/1/stream
What I want is for Wowza to re-broadcast that stream, so that users can connect to the wowza server using flash or their ipads or whatever.
1 - Is this possible?
2 - How do I do it? I’ve tried following the tutorial at https://www.wowza.com/docs/how-to-set-up-live-streaming-using-an-rtmp-based-encoder) but I’m not having any luck. Here’s what I did:
Created applications/live
Downloaded Application.xml from the tutorial link and installed it in conf/live/Application.xml
Created the file content/camera.stream with “rtsp://10.10.12.246:8080/1/stream”
I go to the streammanager page, and see that there’s a “live/definst” entry. I click “start receiving stream.” A dialog box pops up. Application says live/definst, MediaCastType is rtp, and Stream Name is blank. I put test in for the name and hit OK. I get a green “publishing started succesfully” box.
Now I launch examples/LiveVideoStreaming/client/live.html and put in the boxes:
rtmp://localhost/live
Stream: camera.stream
It says “Failed to play camera.stream; stream not found.”
The Wowza console log shows:
INFO application app-start definst live/definst
INFO server comment - RTPMediaCaster.create[1147380142]
INFO server comment - RTPMediaCaster.init[1147380142]
INFO server comment - RTPMediaCaster.Reconnector[1147380142:live/definst:test]: start: 1
INFO server comment - HTTPStreamManager.onHTTPRequest: Publish stream successfully started [live/definst]: flv:test
INFO server comment - RTPSessionDescriptionDataProviderBasic.getStreamInfo[live/definst]: /Library/WowzaMediaServer/content/test
WARN server comment - RTPSessionDescriptionDataProviderBasic.getStreamInfo: SDP file missing: /Library/WowzaMediaServer/content/test
INFO session connect-pending 0:0:0:0:0:0:0:1%0 -
INFO session connect 0:0:0:0:0:0:0:1%0 -
INFO stream create - -
INFO stream destroy myStream -
INFO session disconnect 138132533 -
INFO session connect-pending 0:0:0:0:0:0:0:1%0 -
INFO session connect 0:0:0:0:0:0:0:1%0 -
INFO stream create - -
Where do I go from here?