I am experimenting with C#, and I wanted to create a fun/useful network program. I've programmed for most of my years using C++, C# seems a lot cleaner and easier to program in. I mostly programmed data structures and algorithms. I haven't really touched networking much.
I have video files on my computer that I would like to be able to share/stream/send to other computers on my network. I'm going to eventually expand on it and add a lot of features, but I want to conquer the hardest part first.
Is there a library out that helps with the data management for this?
I see accomplishing this three ways, Idk what's easiest and best.
- Maybe using Windows File Sharing (Like how other computers on a network can open videos in a shared folder?)
- Streaming the video data to the client computer? Then having their native video program open the data stream? (Buffer-like on youtube?)
- Silverlight or some other Library. I can use the built in video player, etc to run it
Features:
- I want to allow the client to be able to copy the video tutorial file to their own computer eventually if necessary, so idk. Maybe buffering is the best solution.
- Want to allow the client to pause/download the video.
Hopefully I can learn a lot in this project.