How to show the video in Wp7 and how can i handle the video streaming in WP7?
I need to Show the video in my Windows Phone 7. 开发者_开发问答And that video must also be shown from the URL, so I must also handle the video streaming. How could i achieve this?
Thanks
You can use the Smooth Streaming Client within Windows Phone 7. Just pop the control into your page with the correct URL and of it goes!
<ss:SmoothStreamingMediaElement
AutoPlay="True"
SmoothStreamingSource="http://<server>/<file>.ism/Manifest"
Height="98" />
Also, see this related question:
Streaming video & audio in Windows Phone 7
精彩评论