Skip to main content
Home Forums Silverlight Programming Programming with .NET - General Play video and audio on Silverlight from an ASPNet handler
2 replies. Latest Post by VansFannel on July 4, 2009.
(0)
VansFannel
Member
1 points
3 Posts
07-03-2009 12:13 PM |
Hello!
I am using ASP.NET's "handler" to show images. I need to play files of audio and video like I do with the image: I recover it from database and show it on an aspx page. Can I create a "handler" for the video and the audio to play it with Silverlight? I don't want that a dialog box is opened asking to the user if he wants to play or save the video file.
I want to play it like YouTube does.
Maybe I can use silverlight for that.
Thank you!
codenenterp
36 points
13 Posts
07-04-2009 12:31 AM |
Silverlight runs on the client you still need to stream the data down from the server. Silverlight should be able to stream video without having a specialized handerl.
07-04-2009 12:31 PM |
Thank you for your answer.
I don't want to save the video or audio file on server. I want to retrieve it from database a pass it to the server directly.
I think if I want to stream the video file I need to save it on server.
Thanks!