views:

375

answers:

3

Hi, i've been making an asp website in which i'm providing the user a facility to upload videos and view them once they are uploaded. I've been successfully been able to upload videos to my server, but not getting as how to play it on the client's page. I want to buffer the video and stream it on user's browser, don't want him to wait and download the whole video before playing. How can i approach?

+2  A: 

You can use windows mediaplayer component. Here is an article about that. Have you thought about using silverlight? Here is one for you using Silverlight.

Shoban
+1  A: 

May want to try installing Windows Media Services on your server and play around with it.

HowTo here: http://www.microsoft.com/windows/windowsmedia/howto/articles/webserver.aspx

API here: http://msdn.microsoft.com/en-us/library/ms738748.aspx

Mcbeev
A: 

You might want to take a look at Video.Show.

notandy