https://github.com/doxakis/localvideostreaming
A minimalist .net core web app to stream mp4 files over the local network.
https://github.com/doxakis/localvideostreaming
dotnetcore streaming-video
Last synced: about 2 months ago
JSON representation
A minimalist .net core web app to stream mp4 files over the local network.
- Host: GitHub
- URL: https://github.com/doxakis/localvideostreaming
- Owner: doxakis
- License: mit
- Created: 2019-01-13T02:58:56.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2020-01-11T22:32:05.000Z (over 6 years ago)
- Last Synced: 2025-07-02T03:37:39.122Z (12 months ago)
- Topics: dotnetcore, streaming-video
- Language: C#
- Size: 526 KB
- Stars: 5
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
- License: LICENSE
Awesome Lists containing this project
README
# LocalVideoStreaming
A minimalist .net core web app to stream mp4 files over the local network.
## Features
- Browse through directories and see only mp4 files
- Streaming using HTTP range requests
- Ability to resume video later (it keep the video current time in localstorage for future playback or in case of disconnection)
- Ability to resume a video started from another PC (storing the video time in redis)
## Hosting
You can host it directly on Windows 10 with IIS. See:
https://docs.microsoft.com/en-us/aspnet/core/host-and-deploy/iis/?view=aspnetcore-2.2
Make sure to install the .NET Core Hosting Bundle.
## Configuration
Open appsettings.json and change the value of RootPathMedia to the root folder.
Install redis:
```
docker pull redis
docker run -d --restart unless-stopped -p 6379:6379 --name localVideoStreaming_redis redis
```
# Copyright and license
Code released under the MIT license.