this post was submitted on 26 Oct 2023
2 points (100.0% liked)

Self-Hosted Main

502 readers
1 users here now

A place to share alternatives to popular online services that can be self-hosted without giving up privacy or locking you into a service you don't control.

For Example

We welcome posts that include suggestions for good self-hosted alternatives to popular online services, how they are better, or how they give back control of your data. Also include hints and tips for less technical readers.

Useful Lists

founded 1 year ago
MODERATORS
 

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 are viewing a single comment's thread
view the rest of the comments
[–] [email protected] 1 points 10 months ago (1 children)

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

[–] [email protected] 1 points 10 months ago

Wow, nginx would be perfect. I will definitely check this plugin.