views:

19

answers:

2

Can any one help me,About how to play video file in jsp application.Where the video file exist in my own mysql databse (BLOB format).Can any one suggest how to play thoes video file in jap page(streaming).

1.is there any API to play video file like. you tube Embed code.or viemo player..

2.is there any server side configuration settings..

Regard Sourav nandan.

A: 

I guess the easiest is HTML5, these days. Try reading this to see what you need to do. You will also need to provide a servlet which will dump your BLOB into its response stream.

Another way would be Flash - there are plenty of solutions for that, for instance FlowPlayer. (You still need that servlet, though.)

Amadan
thanx amadan.we are able to download the video file from database . but the problem is player is not able to fetch the video file..we are using jquery pretty photo to show video.
sourav
As far as I can see, prettyPhoto supports MOV and FLV. Are you using one of these formats? And are you setting the correct MimeType? (`video/quicktime` and `video/x-flv`, respectively)?
Amadan
A: 

HTML5 Video Tag

I don't know about jQuery, but AFAIK, you need jQuery Media Plugin to play videos using jQuery.

zengr