Is a plex subscription worth it?

https://lemm.ee/post/2078553

Is a plex subscription worth it? - lemm.ee

I want to unlock the ability to view content on my mobile device. I can do that with a one-time purchase (payed with google opinion rewards) or with a subscription. I want to unlock the ability for my entire family though, across multiple devices. Do I have to pay the “one-time payment” for every device? If so, the plex subscription might be worth it. Is there any other major benefit to having a plex subscription?

Normally people are using jellyfin.org although i have never used it so I’m not sure if it offers the same functionality but it’s worth a try.
The Free Software Media System | Jellyfin

The volunteer-built media solution that puts you in control of your media. Stream to any device from your own server, with no strings attached.

Jellyfin has more functionality but is a lot more technical to set up. I didn’t think it was worth the effort since I already have a Plex server running, but I could see going through that if I didn’t.

Been running Plex with a lifetime pass for around a decade. Worth it for me for sure.

I haven't used Plex but Jellyfin is as easy as throwing this in Docker:___ ````docker — version: “2.1” services: jellyfin: image: lscr.io/linuxserver/jellyfin:latest container_name: jellyfin environment: - PUID=1000 - PGID=1000 - TZ=Etc/UTC - JELLYFIN_PublishedServerUrl=192.168.0.5 #optional volumes: - /path/to/library:/config - /path/to/tvseries:/data/tvshows - /path/to/movies:/data/movies ports: - 8096:8096 - 8920:8920 #optional - 7359:7359/udp #optional - 1900:1900/udp #optional restart: unless-stopped

If you like Ansible and docker, check out saltbox. It’s a great project and if they don’t have what you need, it’s in community. They also use authelia sso. I’ve contributed to their community repo.

github.com/saltyorg/Saltbox

GitHub - saltyorg/Saltbox: Ansible-based solution for rapidly deploying a Docker containerized cloud media server.

Ansible-based solution for rapidly deploying a Docker containerized cloud media server. - GitHub - saltyorg/Saltbox: Ansible-based solution for rapidly deploying a Docker containerized cloud media ...

GitHub