Reputation: 2796
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
Upvotes: 2
Views: 624
Reputation: 70170
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
Upvotes: 2