
Adaptive RTMP Streaming
hi,
I'm trying to set up to use RTMP adaptive streaing with JWPlayer and our video streaming server.
we have Helix and Wowza server both at the moment, the Wowza server works great with JWplayer.
however it always fails when I try to use JWplayer to play smil file for Helix server, the error I got is manifest is not valid or found.
I put smil file under IIS sever with web application. I can put it together with video files on server but no luck either.
the file is like:
<smil>
<head>
<meta base="rtmp://helixserver/Videos/ABS/" />
</head>
<body>
<switch>
<video src="mp4:Test_320x240.mp4" system-bitrate="528000"/>
<video src="mp4:Test_640x480.mp4" system-bitrate="928000"/>
<video src="mp4:Test_640x480.mp4" system-bitrate="1500000"/>
</switch>
</body>
</smil>
and the jwplayer like:
jwplayer("player").setup({
sources:
file: "/abs/testhelix.smil",
width:"600px",
androidhls:true,
fallback: false
});
it didn't work. can you help?
thanks
Tommy