Click here to Skip to main content
15,888,113 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
We have an asp.net project which adds and plays video files(.mp4) for users. It is ok to upload videos to any web server and play from there. But the problem is how can we play the video files which are located at the user's network storage or cloud storage which is not a web server? Is the only way to install iis? What is the cheapest way?

Thanks in advance
Posted

Here is the solution;
C# Customizable Embedded HTTPServer[^]
 
Share this answer
 
XML
You can use JW Player to play the video on demand or live stream.
Example if your video saved on AWS S3 bucket

<div id="myElement"></div>

<script>
    jwplayer("myElement").setup({
        file: "https://s3.amazonaws.com/TestBucket/Video/video.mp4",
        width: 640,
        height: 360
    });
</script>


for more information click here[^]
 
Share this answer
 
v3
Comments
kubibay 16-Mar-15 6:30am    
I'm already using JW Player to play video files.
But how can I play the video file from user's network storage?
\\xserver\xdirectory\y.mp4

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900