Hi! I want to find some self hosted service (docker image) to stream videos with HLS.
So, log in into docker container dashboard, upload video to disk (docker volume) and get my HLS streaming URL that I can put into my django/wagtail app admin panel to change url on frontend.
Run container with volume -> simple dashboard with auth -> upload video to disk -> get HLS link.
Basically, I need something as simple as bunny net stream or cloudflare videos. But self hosted. Chatgpt recommended some solutions, but it’s hard to find demos/screenshots for them so i’m here to ask for advice.
You can try FastoCloud, seems they have opensource version
https://hub.docker.com/r/gdomod/nginx-vod-live-hls
tried this one and it works.
docker run -it --rm --name nginx -p 1937:1935 -p 8035:80 -v “/storage/videos/”:/videos gdomod/nginx-vod-live-hls:latest
to play vod.
http://:8035/vod/.mp4/index.m3u8
Wow, nginx would be perfect. I will definitely check this plugin.