Earlier quoted context omitted.
Definitely cheating. I’ve taught my mostly-non-technical gf how to to load up sonarr and add something to the library. Anything we can do to avoid the hodgepodge of 8 different streaming services and rotating availability…
Smart man, I still act as the middleman any time my gf wants a show!
Jellyfin founder Andrew leaves team
261–270 of 348 posts
Re: Jellyfin founder Andrew leaves team
#262Earlier quoted context omitted.
Check out https://siloserver.org . Silo has its own API but also spins up a Jellyfin-protocol compatibility layer. This allows you to use any Jellyfin client and just point it at your Silo server.
It's another vibe coded slop
It's currently running a PB+ media library (which neither Jellyfin nor Emby can run) with native clients across multiple platforms. It will unseat Jellyfin.
Re: Jellyfin founder Andrew leaves team
#263Earlier quoted context omitted.
It lets the user browser with cover art, descriptions, trailers, sorting by release date, rating, etc. It keeps track of watched and unwatched movies. Shows what’s recently be added, recently released. Keeps track of where you’re at in a TV series, to always play the next episode. It can transcode as needed, to something like a mobile device or TV that might be more picky than VLC. Lots of quality of life improvement…
Plex subscription also includes a “Skip Intro” for TV shows. That’s the only value I’ve gotten out of it other than being able to stream to my phone. Not sure if Jellyfin has an equivalent
Re: Jellyfin founder Andrew leaves team
#264Earlier quoted context omitted.
It lets the user browser with cover art, descriptions, trailers, sorting by release date, rating, etc. It keeps track of watched and unwatched movies. Shows what’s recently be added, recently released. Keeps track of where you’re at in a TV series, to always play the next episode. It can transcode as needed, to something like a mobile device or TV that might be more picky than VLC. Lots of quality of life improvement…
Plex subscription also includes a “Skip Intro” for TV shows. That’s the only value I’ve gotten out of it other than being able to stream to my phone. Not sure if Jellyfin has an equivalent
Re: Jellyfin founder Andrew leaves team
#265Great that it's peaceful. Jellyfin is an amazing project, and works almost exactly how I want it to. By listing and playing my media without autoplaying trailers and other such stuff. I imagine many here who've never tried it will be of the same mindset
It's not amazing, it's as good as it is. Which is to say not great. There is a crazy amount of bugs which I have no confidence will ever get fixed. If you're the type that enjoys tinkering with obscure Linux settings for hours on end, which are certain to break if you dare to update anything, it may be for you.
Re: Jellyfin founder Andrew leaves team
#266I’m surprised people reach for plex, not sure what I’m missing - but a Jellyfin container set up has been fantastic for strictly at home usage (running on an old gaming PC). It’s fantastic software - the cross platform applications are pretty useable. Don’t think we’ve even had any major issues over the last 4 years using it. Many thanks to the builders and maintainers, hopefully Andrew can take some rest and know th…
I have a problem that it constantly tries to re-encode video that could be played perfectly fine in their player or the mpv shim. I wound up just mounting my remote drives and playing in my local mpv. I don't really use it because of that. Unfortunate because otherwise I love a lot of things about it.
I've tried tweaking both the clients and server to be less pessimistic, i.e. see if the active media elements are supported, but even then it really fights it. I think the best approach would be rewrite the clients to adopt a (try || transcode) strategy rather than (guess || transcode), but that looked to be a major piece of work.
Re: Jellyfin founder Andrew leaves team
#267Earlier quoted context omitted.
I still am not quite sure what value something like Plex offers for my personal HTPC media needs. I have a large collection of disk space that's an SMB file share on my local LAN, on a server in my garage. My home theatre PC mounts it over the LAN. I have an XFCE4 desktop environment on the HTPC with the font size cranked up a bit and can run nautilus, thunar, or any other file explorer metaphor browser to explore th…
I assume Plex "just works". Jellyfin is some assembly required. You also occasionally run into a "Love Exposure" type bug. https://github.com/jellyfin/jellyfin/issues/10494
Re: Jellyfin founder Andrew leaves team
#268There's never been a better time to consider writing your own media server solution from scratch. I really don't like the idea of transcoding on demand. It has always created a janky experience on the client. I've been using a custom solution that runs everything through ffmpeg normalization as part of the media upload phase. Whenever a client wants to stream something we give them raw byte ranges directly from the b…
Transcoding on demand is just trading compute for storage. If you have infinite storage you can store all definitions in advance for any possible client (I think that's what Netflix does); but if you don't, transcoding on demand is fine and isn't that much slower (a bit janky, yes, but only a bit).
And storage is getting expensive AF.
Re: Jellyfin founder Andrew leaves team
#269Re: Jellyfin founder Andrew leaves team
#270There's never been a better time to consider writing your own media server solution from scratch. I really don't like the idea of transcoding on demand. It has always created a janky experience on the client. I've been using a custom solution that runs everything through ffmpeg normalization as part of the media upload phase. Whenever a client wants to stream something we give them raw byte ranges directly from the b…
We should be clear about software vs hardware transcoding being different things. Hardware transcoding is "free" for even commodity hardware. Yes, lower end systems might have trouble keeping up with a blu-ray remux as its source to a high-bitrate target. But you can very easily buy an off the shelf mini-pc to act as a transcode-capable server and eliminate nearly all the downsides that come with trying to avoid tran…
There were quirks (mostly self-imposed ones) to getting the whole thing set up, but it ran like a champ for the better part of a year. Hardware transcoding really does make a world of difference, even in the worst of cases.