ASP.Net , C# Web Application, how to play video sitting on client side -


i have cloud based asp.net, c# web application. want web application invoke videos sitting on clients's private network play.

the client have videos stored on file server in private network. want play video (via unc path video stored on client's private network), path (\fileserver\videos\xxxx.mp4) on page hyper when user clicks link video play in whatever compatible media player on client pc. client pc , file server on same network. cloud based application hosted on different network has no link network of client pc , file server except via web.

i don't want upload videos web server , stream them easy , works because of bandwidth issues. want store location of video , invoke play via web application (url/file path can clicked on page)

is there way web application access files/resources on client side in case want play videos. if there no out of box functionality there work around please help.....

you can use html 5 element play videos, meant ?

 <video width="320" height="240" controls>      <source src="\fileserver\videos\xxxx.mp4" type="video/mp4">      <source src="\fileserver\videos\xxxx.ogg" type="video/ogg">      browser not support video tag.    </video> 

Comments

Popular posts from this blog

database - VFP Grid + SQL server 2008 - grid not showing correctly -

jquery - Set jPicker field to empty value -

.htaccess - htaccess convert request to clean url and add slash at the end of the url -