cross-posted from: https://lemdro.id/post/31558391
TL;DR: Stop running a Jellyfin server. MPV can directly play anything from your NAS, stream YouTube ad-free, handle literally every codec, and is infinitely customizable. It’s like vim for video.
Why I ditched my Jellyfin setup
I used to run Jellyfin on my NAS. Transcoding, web interface, the works. Then I realized… why am I running a whole server stack when MPV can just directly play files from my NAS with zero setup?
What MPV Actually Is
MPV is a command-line video player that plays literally everything. But it’s way more than that - it’s a video engine you can build workflows around.
The Basics That Blow Minds
Direct NAS streaming (zero server needed):
mpv smb://192.168.1.100/media/movies/whatever.mkv mpv nfs://nas.local/shows/season1/*No transcoding. No server. No web interface overhead. Just direct file access with perfect quality and zero latency.
YouTube (and 1000+ sites) with ZERO ads:
brew install yt-dlp mpv "https://youtube.com/watch?v..."That’s it. Ad-free YouTube in your video player with all your custom keybinds. Works with Twitch, Vimeo, Twitter, Reddit, literally hundreds of sites via yt-dlp.
Play entire directories:
mpv /Volumes/NAS/shows/BreakingBad/Season1/*Boom. Instant binge session. Space bar skips to next episode. No library scanning, no metadata scraping, just files.
Workflows That Changed My Life
1. The “Watch Anywhere” Setup
Mount your NAS shares in Finder (or /etc/fstab for auto-mount). Now MPV treats your entire media library like local files. Add this to your shell config:
alias play="mpv" alias tv="mpv /Volumes/NAS/shows/" alias movies="mpv /Volumes/NAS/movies/"2. YouTube as Your Streaming Service
alias yt="mpv" alias ytm="mpv --no-video" # audio only for musicNow:
yt "youtube-url"= instant ad-free playbackytm "youtube-playlist"= whole playlists as audio- Keep your YouTube history/recommendations in browser, watch in MPV
3. Picture-in-Picture for Anything
Add
ontop=yesto config, resize window small = instant PiP for any video source while you work. Works with live streams, security cameras, whatever.4. The “No Plex Shares Needed” Share
Send someone an SMB/NFS share to your media. They install MPV. They can now browse and play your media library like it’s local. No Plex accounts, no streaming limits, no transcoding quality loss.
5. Live Stream Monitoring
mpv http://192.168.1.50:8080/stream.m3u8Home security cameras, baby monitors, anything streaming HLS/RTMP = instant monitoring with keybind controls.
Customization That Makes Jellyfin Look Basic
My Config (vim-style keybinds + YouTube controls)
Saved as
~/.config/mpv/mpv.conf:input-default-bindings=no > add speed 0.1 < add speed -0.1 j seek -10 k cycle pause l seek 10 LEFT seek -5 RIGHT seek 5 UP add volume 5 DOWN add volume -5 . frame-step , frame-back-step m cycle mute f cycle fullscreen s cycle sub a cycle audio 0 seek 0 absolute-percent 1 seek 10 absolute-percent 2 seek 20 absolute-percent 3 seek 30 absolute-percent 4 seek 40 absolute-percent 5 seek 50 absolute-percent 6 seek 60 absolute-percent 7 seek 70 absolute-percent 8 seek 80 absolute-percent 9 seek 90 absolute-percent [ add speed -0.25 ] add speed 0.25 SPACE cycle pause ESC set fullscreen no i script-binding stats/display-stats S screenshot video profile=gpu-hq scale=ewa_lanczossharp cscale=ewa_lanczossharp hwdec=auto-safe vo=gpu screenshot-format=png screenshot-png-compression=9 screenshot-directory=~/Downloads cache=yes demuxer-max-bytes=150M osd-level=1 osd-duration=2000 save-position-on-quit=yes keep-open=yes alang=jpn,jp,eng,en slang=eng,en ytdl-format=bestvideo[height<=1080]+bestaudio/bestProfiles for Different Content
[anime] profile-desc="Anime settings" deband=yes [lowpower] profile-desc="Laptop battery mode" profile=fast hwdec=yesUse with:
mpv --profile=anime episode.mkvScripts That Make It Insane
MPV supports Lua/JS scripts. Drop them in
~/.config/mpv/scripts/and they just work.Must-have scripts:
sponsorblock - Auto-skips YouTube sponsors/intros/outros
curl -o ~/.config/mpv/scripts/sponsorblock.lua \ https://raw.githubusercontent.com/po5/mpv_sponsorblock/master/sponsorblock.luaquality-menu - Change YouTube quality on the fly
autosubsync - Auto-fixes subtitle timing
playlistmanager - Visual playlist editor
mpv-discordRPC - Show what you’re watching on Discord
Advanced Workflows
Watch Parties (Syncplay)
Install syncplay, point it at MPV, now you and friends watch your NAS content together in perfect sync. No Plex share limits, no quality loss.
Audio Streaming
ytm "youtube-playlist-url" # or mpv --no-video /Volumes/NAS/music/*No GUI needed. Terminal command plays audio, you use keybinds (k=pause, j/l=skip, etc). Or just minimize and use as background music player.
For GUI: IINA (Mac) is literally just MPV with a pretty interface and uses your MPV config.
Frame-by-Frame Analysis
Built-in keybinds (
.and,in my config) step forward/back frame-by-frame. Perfect for animation analysis, sports breakdown, debugging video issues.Automated Workflows
# Watch anything in clipboard mpv $(pbpaste) # Random episode mpv "$(find /Volumes/NAS/shows -name "*.mkv" | shuf -n1)" # Continue last watched (auto position restore) mpv /Volumes/NAS/shows/CurrentShow/*Why This Beats Jellyfin For Me
Pros:
- Zero server maintenance
- No transcoding = perfect quality
- Plays literally any codec without setup
- Way faster (direct file access)
- Keyboard-driven workflow
- Works offline/online seamlessly
- Infinitely scriptable
- Cross-platform (Linux/Mac/Windows)
Cons:
- No pretty web UI (I consider this a pro)
- No user management (just use OS permissions)
- No watch tracking (unless you script it)
- No mobile app (VLC on phone + SMB works though)
Who This Is For
- You’re comfortable with terminal/config files
- You want maximum quality (no transcoding ever)
- You prefer keyboard controls
- You value simplicity over features
- You already have a NAS/file server
- You want YouTube ad-free without browser extensions
Getting Started
# macOS brew install mpv yt-dlp # Linux sudo apt install mpv yt-dlp # Windows scoop install mpv yt-dlpCreate config at:
- Mac/Linux:
~/.config/mpv/mpv.conf- Windows:
APPDATA%/mpv/mpv.confMount your NAS shares, point MPV at files. Done.
Resources
EDIT: Holy shit, didn’t expect this response. Common questions:
Q: But I need to share with family who aren’t technical A: IINA (Mac) or mpv.net (Windows) give them a normal GUI that uses MPV underneath. Or just… teach them?
play movie.mkvisn’t rocket science.Q: What about mobile? A: VLC on phone + SMB share to your NAS. Or just use MPV on desktop/laptop like a civilized person.
Q: No watch history tracking? A:
save-position-on-quit=yesremembers position per file. For tracking across devices, write a simple script or just… remember what you watched?Q: This sounds like gatekeeping A: It’s literally a config file. If you can set up Jellyfin, you can handle this.
Reminds me of this HackerNews classic how you don’t need Dropbox and all functionality can be replicated trivially using FTP.
Glad MPV works for you, shut up about the gatekeeping
That was a long winded way of saying you don’t know what Jellyfin actually is or does. Mpv is a client, it only fills the role that the various Jellyfin clients perform and a better comparison would be against a heavier weight media player such as Kodi.
What you suggest works well enough if you have a reliable network link to share CIFS or NFS over, but what do you do when away from home on a rubbish link that doesn’t have bandwidth to stream all your high quality bluray rips? You want transcoding in that situation.
Also, I’m a seasoned Unix sysadmin who knows his way around the cli and I can say with certainty this isn’t for people who know the cli, it’s for people who just want to prove you can do anything from the cli even if suboptimal.
Can’t run mpv on my TV though.
[Grab shoulders and shake violently enough to cause Shaken Adult Syndrome]
BUT IT’S SO VERSATILE! STOP SLEEPING ON IT!
I mean… I use it on my computer? Been using it since it succeeded mplayer2.
I do?
Your TV has an app for running mpv? Or do you mean you’re using your TV as a computer monitor? That’s not really the same thing, IMO.
This was painful to read. Yuck. It was written like clickbait. Like AI writes. Yuck.
And of course it was crossposted. If you’ve got something you need everyone to know, you gotta crosspost it everywhere.I disagree with you - great post about an interesting tool.
I just reviewed the post again. It’s a stellar example of modern writing trends.
Read this:
Ultimate Blow Minds Change My Life Your Anything Basic Insane AdvancedDon’t you feel kinda gross now?
mpv nfs://nas.local/shows/season1/*
Fucking sick.
you are way overthinking it my friend. running a docker container for jellyfin is not a big deal and requires virtually no maintenance. lots of QOL improvements too like tracking watched status, playlists, metadata, clients that run on an actual television, etc, etc.
The watched status is reason enough for me to use it. Having to remember what episode you watched last for 4+ shows at a time is annoying.
I dailydrive a heavily configured MPV and I’ve got a lot of complaints about jellyfin, but this is a no-go for sharing for the vast majority of people.
I’m still trying to figure out why I should stop running a jellyfin server. It does all this too, and I just had to deploy a docker container and point it at my NAS.
I just had to deploy a docker con^C # exit NO CARRIEROK, you’re saying that deploying a docker container is too difficult, but somehow MPV assembly from the command line isn’t?
My point was, why should people be abandoning Jellyfin for MPV when there’s no observable gain in features or functionality, and it’s significantly more complicated to set up?
“I don’t understand how Docker works and I can’t be arsed to learn”
Ding ding ding, got it in one. I also can’t be arsed to learn how sausages are made, because I can tell from here that they are not for me.
Or just… teach them? play movie.mkv isn’t rocket science.
Instructions on how to switch to HDMI 1 are currently taped to the back of my mom’s TV remote
Reminds me of:

Most remote design is honestly atrocious. Somehow they keep hiding “source” in random spots, when it should be one of the most important buttons. The obscure pictograms are all over the place, and most buttons will never be used by anyone.
- The “No Plex Shares Needed” Share
Send someone an SMB/NFS share to your media. They install MPV. They can now browse and play your media library like it’s local. No Plex accounts, no streaming limits, no transcoding quality loss.
Yeah, that’s not tenable for anyone but the nerdiest users. None of my users know what an SMB share is. They know Plex is the icon they click on to watch the movies I get them.
I’m glad this exists but the Netflix-like experience Plex offers is key to adoption by normal people. Aside from the yt-dlp integration, it sounds like DLNA sharing via PMS or XBMC from way back.
I have a buddy who won’t switch his streaming box because he thinks his in-laws will be too confused by a different button layout on the remote.
You know that mpv is what plex actually uses to play the content right? At least on desktop. A lot of my users (almost all actually) are watching things via the smart tv app or their phones/tablets etc. Watch states are tracked between them and for the most part it just works.
Who This Is For
- You’re comfortable with terminal/config files
Aaand I’m out. It looked fun until I got to all the work I would need to do.
I’m comfortable with the terminal and messing around with config files.
I still rolled my eyes at how the user seem to have no understanding of what’s the actual convenience that Plex/jellyfin provides. Hint: playing/streaming videos is the least of them.
MPV lacks a graphical user interface so I have to keep the hotkey list open to use it. Normally I use VLC but it can’t play some files right.
I front-end mpv with smplayer.
It’s enough for my purposes.
Edit the config to unbind all defaults, and define your own keybinds as you need them, using what’s most intuitive for you. Helps building memory.
Or you can just use one if the plethora of guis…
Thanks. I installed SMPlayer for mouse control.
Looks cool, but it sounds like yt-dlp may be about to break? Someone posted a screen shot of youtube.com with a recaptcha on the screen. If that can’t be bypassed, it was just a matter of time.
[ tl;dr:
yt-dlphas been working nicely on this setup. For many years. ]Every alternative youtube frontend that doesn’t use its API is always about to break because that’s the game youtube has been playing for years.
However, if it has enough users and contributors, it always gets fixed promptly.
yt-dlphas enough users and contributors.Someone posted a screen shot of youtube.com with a recaptcha on the screen.
Not even sure what you’re refering to; the whole point of
yt-dlpis that you don’t use the web ui.I bet the yt-dlp team will find a solution very quickly. I mean, YouTube still can’t bypass uBlock without it being patched hours later
Youtube up til now has resisted using something as brutal as an on-screen recaptcha, because of the friction that creates for regular users. If they’ve finally gone that route, it seems difficult to fix with simple automation.









