AS3 NetConnection to MS Azure Media Services - actionscript-3

I'm trying to publish a live web cam stream to an Azure Media Services channel. I have the channel configured and am using the rtmp ingest url in the NetConnection.connect method.
I have my Flash AS3 setup to stream to an Adobe Media Server and it works fine. All I am doing so far is changing the URL to the Azure one.
All I ever get is NetConnection.Connect.Failed
If I use that same ingest url in wirecast I can stream my web cam fine.
Any thoughts as to why the Flash version is failing?

Related

How can I stream video captured from my webcam to wowza media server?

I have captured the stream object returned by HTML5 camera object to wowza server which can be further streamed to other devices. How can I do that.
If you have a software encoder that is capturing your webcam/mic and encoding it into one of these streaming protocols (RTMP, RTSP, MPEG-TS), then you should be able to just publish your stream to your Wowza server.
Make sure that your Wowza services are running.
If it's a default installation, it should already be installed with an application called "live".
If you are sending your live stream through RTMP, then you only need to publish it to your Wowza server by sending it to the following URL: rtmp://<wowzaServerIP>:1935/live/<streamName> where <wowzaServerIP> refers to your Wowza server's IP address, and <streamName> is any string.
If you are sending your live stream through RTSP, just change the protocol accordingly.
To playback the stream, you can use VLC or any web player (such as JWPlayer, TheOPlayer, or Flowplayer), and playback the stream using the same URL. Do note that some players do not support all protocols/formats. VLC is your best bet for playing back streams in a test environment.

captive portal for OSX can't play streaming or mp4

We are using Wifi Hotspot and implementing video ads.
The problem of OSX is when I use my Macbook Air connected to Wifi, the captive portal and content popup appear. I just use HTML5 or HLS to make a player for streaming a videos
Also, I made a lot of test cases and failed. Here are some things that failed:
Use Streaming Server ( Already open the wall garden to stream http://xx.xx.xx.xx:1935/vod/mp4:myfile.mp4/playlist.m3u8 )
DirectLink to the files of mp4
After I use the tools to see the package running such as wireshark, the package is still stuck on the captive portal.
How can I make a stream play on popup of the captive portal???
Thanks

Video Streaming over HTTP in Windows Phone 8

I am trying to work on getting Video Streaming over HTTP in a windows phone 8 application.
These are the issues that i am facing,
Unable to stream video using the MediaElement.
unable to Stream video using the player framework by microsoft.
Things to be noted here, i am not using the IIS oriented servers.
The above will well when i hard code the server details from my local machine or isolated storage. But this does not work through HTTP.
Does anyone have any idea on this ?
If this is not possible, is there a way where i can have HTML5 streaming the video and have that included in my application ?

How to stream rtsp output by crtmp server by inputing rtmp stream from fmle using webcam?

Can anybody suggest me on crtmpserver.lua configuration?
I setup crtmp server on AWS EC2 Ubuntu 12.04. after building deb package successfully.
I have successfully stream my Webcam stream using FMLE on my windows 7 machine, connected to my crtmp server,then played on website using JW Player.
Now i want to get RTSP stream from the same crtmp server using same RTMP input to play on mobile.I read crtmp server can stream both in RTMP and RTSP. Please guide me on confiuration of crtmpserver.lua to achieve this.
Also please let me know if i can use multibit encoding high bit rate for web and low for mobile streaming same webcam stream?
Thanks in advance.

Reading HTTP cookies from adobe Air desktop app

I am developing an Adobe AIR app where I need to read the session id from the cookie of a http request.
I have found a method called URLRequest.manageCookies supported by AIR so I hope there should be a way to read the cookies as well. I am using AIR 3.
I want to read HTTP cookies not Local Shared Objects and in a desktop AIR application.