After i spent hours reading and trying everything that I could, I decide that was better to ask for help.
The goal “appears to be simple”: I need to setup a live streaming that people will be able to watch from their iOS, Android devices and PC’s.
I started with this guide:
https://www.wowza.com/docs/quick-start-guides
I did everything it suggests.
After that, I setup flash media encoder 3.2 as following:
I started Wowza and this worked on my iPad as expected:
http://192.168.1.142:1935/MyApp/MyStream/playlist.m3u8
After that, I went to installation folder and opened the following player:
[WOWZA_DIR]/examples/LiveVideoStreaming/FlashHTTPPlayer/player.html
On the stream field I entered:
http://192.168.1.142:1935/MyApp/MyStream/manifest.f4m
It also worked.
So, here is the problem:
This same url that worked on the demo player doesn’t work anywhere else.
I tried VideoJs, JW Player and other 2 I found on the guides that i don’t even remember the exact names (one from adobe though).
I must be doing something wrong.
Here is my code for JW Player:
@WidgetHelpers.RenderZone0(widgets)
@Umbraco.Field(“content”)
<div id='player_449'></div>
<script type='text/javascript'>
jwplayer('player_449').setup({
file: "rtmp://192.168.1.142:1935/MyApp/MyStream/manifest.f4m",
width: "480",
height: "270",
image: "http://content.bitsontherun.com/thumbs/3XnJSIm4-640.jpg",
modes: [
{ type: 'html5' },
{ type: 'flash', src: '/plugins/jwplayer/jwplayer.flash.swf' },
{ type: 'download' }
]
});
</script>
Players will give me errors like: unsuported video format or, can’t connect to the server, or… just stay black.
By the way, everything is running on the same box (Windows 7). The page running the players is hosted on IIS7.
What i need:
Since iOS is already working, I need one player for Android and PC. I was trying to avoid flash but it appears that wowza doesn’t have support to HTML5 players, right?
I really appreciate any help on this.