views:

1138

answers:

2

As far as I can see silverlight only supports streaming over http even in version 2, as I understand it mms is converted to http and therefore you cannot stream RSTP (I have tried to test this and get network errors unless I stream http).

Does anyone know if RSTP is going to be supported in Silverlight or if it is and how?

Thanks

P

A: 

No, there are not any plans for RSTP support, AFAIK.

Jeff Wilcox
+1  A: 

Silverlight 3 supports streaming over RTSP through the use of the MediaStreamSource. Instead of connecting your MediaElement via .Source you use .SetSource and point it at your MediaStreamSource implementation.

The MediaStreamSource is used to allow Silverlight to work with currently unsupported formats such as MP3, MP4, etc.

Be prepared for the usual floundering and lots of internet searching as there isn't a lot of documentation or samples.

dcreeron