hello,
i'm trying to play videos in the gridview,when i run the application,i'm able to see only the outline of the player and doesn't display the video. this is the code i have used
when i try to download the video it says " file not found" i have saved the file path to the database.
<video width="320" height="240" controls="controls">
<source src="movie.ogg" type="video/ogg" />
<source src="movie.mp4" type="video/mp4" />
<source src="movie.webm" type="video/webm" />
<object width="640" height="480" src='<%#Eval("video") %>'>
<embed width="640" height="480" src='<%#Eval("video") %>'>
Your browser does not support video
</embed>
</object>
</video>
kindly tell me where i have gone wrong ,your help will be appreciated. thanks in advance.