views:

17

answers:

2

I am passing to the source property of a VideoDisplay component a DynamicStreamingVideoSource object with 3 different dynamic live stream items, described by this XML, for your consideration:

src="rtmp://88.87.56.214:1935/live/fashiontv_tmo_h.stream" bitrate="19200" src="rtmp://88.87.56.214:1935/live/fashiontv_tmo_m.stream" bitrate="9000" src="rtmp://88.87.56.214:1935/live/fashiontv_tmo_l.stream" bitrate="3600"

But the player then runs the stream with the lowest bitrate, out of those 3. Wasn't it supposed to go for the stream with the highest bitrate, that is viewable by the end-user? All 3 streams have been individually tested and they are all viewable.

Thanks, Liviu

A: 

I was pretty sure the VideoDisplay component will display whatever source URL you send it. Without seeing code, I'm not sure what is going on.

If you want to display a different bitrate stream you'll have to tell the VideoDisplay component to switch the URL. If you want to do some automatic bitrate switching "on the fly" I believe that has to be done at the server, not the client.

www.Flextras.com
A: 

Hi,

I have posted a post on my blog with some source code that is very easy to understand a while back.

check it out here

Avi Tzurel