play video file which is binary form in database
-
Hi all, In my appln' i want to play audioe/video file . It is like the file is converted to binary format and saved in MSSQL 2005 database. I saved file extension like(.mp3,.wav,.dat,.mpg) and file in binary form any help is appreciatable
All I ever wanted is what others have.... CrazySanker
-
Hi all, In my appln' i want to play audioe/video file . It is like the file is converted to binary format and saved in MSSQL 2005 database. I saved file extension like(.mp3,.wav,.dat,.mpg) and file in binary form any help is appreciatable
All I ever wanted is what others have.... CrazySanker
-
Hi all, In my appln' i want to play audioe/video file . It is like the file is converted to binary format and saved in MSSQL 2005 database. I saved file extension like(.mp3,.wav,.dat,.mpg) and file in binary form any help is appreciatable
All I ever wanted is what others have.... CrazySanker
I don't have any sample code right here in my hand, but you might want to search on the net or write your own as it's simple enough. Basically, you normally use the media file ending with .mp3, .wav ...., to feed the media player, but now you specify a web page, say download.aspx instead (perhaps along with the id of the media file in the query string). Then in the download.aspx file, you just write some code to query the selected media file contents from DB based on the id passed in the query string. You finally write out the binary data to the Response object and that's it.