I am new to Live Streaming logic, but now I have Wowza, and I received the following streams from the server:
http://.................../mychannel/playlist.m3u8 http://.................../mychannel/Manifest rtmp://.................../mychannel&streamType=live rtsp://.................../mychannel
So let's say for iOS , I just put:
<video x-webkit-airplay="allow" type="video/m3u8" controls src="http://........../mychannel/playlist.m3u8" />
For Desktop/ Flash Play:
<object> <param name="movie" value="http://fpdownload.adobe.com/strobe/FlashMediaPlayback.swf"></param> <param name="flashvars" value="src=rtmp://................/mychannel&streamType=live"></param> <param name="allowFullScreen" value="true"></param> <param name="allowscriptaccess" value="always"></param> <embed src="http://fpdownload.adobe.com/strobe/FlashMediaPlayback.swf" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="640" height="360" flashvars="src=rtmp://.............mychannel&streamType=live"></embed> </object>
Then for Android direct streaming:
<a href="rtsp://............/mychannel">Play</a>
So, now the BIG QUESTION!
The only thing I want to know is just:
- How can I do (any of) the above streams for FREE ON WINDOWS PHONES simply?
- SIMPLY means that, as above, I can just copy the code inside my HTML page!
(I DO NOT DON'T know about Windows and its programs / sdks /)
source share