r/PleX 2d ago

Help Similar Artists with Apostrophe/Quotation Mark

4 Upvotes

While looking at "Similar Artists" for musicians in Plex, I've noticed that any artists with an apostrophe (') or quotation mark (") in their name won't show up. Even if they're tagged to do so. For example, I can't get "Weird Al" Yankovic to show up as a similar artist to anyone. Has anyone else run into this, and know of a solution?


r/PleX 1d ago

Help Disney sequels glitchy

0 Upvotes

For some reason, I'm finding my server plays Disney movies (Little Mermaid, Lion King, Mulan specifically) perfectly fine. Their remakes have worked fine as well.

Little Mermaid 2 and 3, Mulan 2, and Lion King 2 and 3 all play but glitches every couple seconds making it unwatchable. I've tried downloading all of these sequels 3 separate times because I had assumed it was a file issue but now I have no idea lol.

Tried lowering the streaming quality but it doesn't help.

Anyone have any ideas?


r/PleX 2d ago

Help app.plex.tv is unable to connect to securely since today

21 Upvotes

Since today Plex is unable to connect securely to my NAS. Nothing changed and the NAS did not restart.

I'm running Plex on a Linux server

Anyone else have this issue?


r/PleX 2d ago

Help How do I set Plex Player to never play a show theme song while showing the seasons and episodes? Using web browser

2 Upvotes

How do I set Plex Player to never play a show theme song while showing the seasons and episodes? Using web browser


r/PleX 2d ago

Help iOS app not working with Tailscale

2 Upvotes

So i bought a new NAS today. migrated my library over to it and setup tailscale and plex in docker. I can access my plex library fully on my local network. When i enable tailscale I can access and stream my plex library via mobile browser.

However, the official Plex app says my plex server is offline and wont stream. Did something happen in an app update? Clearly tailscale works if I can steam my library via my phone's browser.


r/PleX 2d ago

Help Any way to get search results from my tuner’s guide (DVR feature) in the iOS app?

1 Upvotes

When searching in the iOS Plex app, search results do not include results from my tuner (DVR feature). I get results from my library, as well as Plex’s free live TV, but nothing from my tuner. It works correctly in the Plex web app. Am I overlooking something, or is this not supported in the app? To add, I do see my guide in the app correctly showing the shows from my tuner, but they do not appear in search results.


r/PleX 1d ago

Solved I can't create/connect to server

Thumbnail gallery
0 Upvotes

Hi, I am new to using Plex (literally signed up today lol) and wanted to upload some movies, so I googled how to and it said I have to connect to a server in order to create a library.

Tried to connect it to my Macbook, but I got an error message (1st picture) after maybe 3 min of the loading screen saying "Initialising Plex Media Server".

I clicked the link in orange and followed the instructions for macOS (2nd picture) and logged back into Plex, but I got the error message again. Tried it a couple more times but same result.

Does this happen often on Macbooks? Should I try to establish a connection on my iPad or iPhone?

I'm wondering if my home WiFi is at fault since my father is an IT nut and put up all kinds of blockers, but then again, he has his own Plex server on the TV, presumably connected to said home WiFi.

Thanks in advance for any advice!!


r/PleX 1d ago

Help tv show wont show up

0 Upvotes

i have a tv show in my library that refuses to show up on plex ive tried removing it and moving it back while having olex scan the library each time and ive tried creating a new folder but it refuses to show up please help me


r/PleX 1d ago

Help Plex shows Tailscale tunnel IP instead of client's real WAN IP

0 Upvotes

Problem

When streaming from outside the home network, Plex logs the Tailscale IP of the VPS as the client IP instead of the real public WAN IP of the person streaming.

Setup

Network path

  • VPS - Nginx Proxy Manager (NPM) + CrowdSec, public-facing. Holds the TLS wildcard cert for *.mydomain.com and forces HTTPS.
  • Home server - Ubuntu box running Plex bare metal, behind CGNAT (hence the VPS + tunnel).
  • Tunnel - VPS ↔ home server over Tailscale. NPM proxies to Plex’s Tailscale IP via MagicDNS (https://plex-server.tailnet.ts.net:32400).

NPM proxy config

Custom config for plex.mydomain.com:

proxy_set_header Sec-WebSocket-Extensions $http_sec_websocket_extensions;
proxy_set_header Sec-WebSocket-Key $http_sec_websocket_key;
proxy_set_header Sec-WebSocket-Version $http_sec_websocket_version;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection "Upgrade";
gzip on;
gzip_vary on;
gzip_min_length 1000;
gzip_proxied any;
gzip_types text/plain text/css text/xml application/xml text/javascript application/x-javascript image/svg+xml;
gzip_disable "MSIE [1-6]\.";
proxy_redirect off;
proxy_buffering off;

The issue remains even without any custom config.
This default config is applied to all my NPM hosts regardless of custom config:

add_header       X-Served-By $host;
proxy_set_header Host $host;
proxy_set_header X-Forwarded-Scheme $x_forwarded_scheme;
proxy_set_header X-Forwarded-Proto  $x_forwarded_proto;
proxy_set_header X-Forwarded-For    $proxy_add_x_forwarded_for;
proxy_set_header X-Real-IP          $remote_addr;
proxy_pass       $forward_scheme://$server:$port$request_uri;

Plex config

  • Trusted networks - Tailscale IP of the proxy (100.x.x.x/32) added under Settings → Network → “List of IP addresses and networks that are allowed without auth”. Logs show incoming connections as Request: [100.x.x.x (Allowed Network (Subnet))].
  • Custom server access URLs - plex.mydomain.com added for HTTP and HTTPS (http://plex.mydomain.com:80,https://plex.mydomain.com:443)
  • Remote Access - disabled by design; the indicator is red. The server is behind CGNAT and reachability is handled entirely via the reverse proxy / Tailscale tunnel, not simple port forwarding.

What’s been confirmed so far

  1. Nginx forwards headers correctly - Debug access logs on the VPS confirm X-Forwarded-For / X-Real-IP contain the correct real public IP of the remote client at the point NPM sends the request onward.
  2. Plex is not honoring the forwarded header - Plex’s own logs show the connection as coming from the Tailscale subnet IP, not the value in X-Forwarded-For. Verbose logging shows the actual IP (IPv6 in this case): X-Forwarded-For: <REAL_USERS_IPv6>
  3. The custom server access URL has no effect - With plex.mydomain.com set as a custom access URL, Plex is reachable from via the correct path but the logs still show the following on remote playback requests: Request came in with unrecognized domain / IP 'plex.mydomain.com' in header Host; treating as non-local
  4. Other services work fine - Other services on the same host, proxied through the exact same VPS → NPM → Tailscale → home server chain, correctly displays clients’ real IPs with no extra configuration.

Am I still missing some configuration, or is this just not implemented correctly on Plex’s side?


r/PleX 2d ago

Help Can't access original server

1 Upvotes

Hi everybody,

So my windows PC rebooted, and now I've lost access to my original server, and now I have an empty copy that my account is connected to. Is there any way access my original server? I don't want to have to set everything up from scratch again. Any help is appreciated

https://imgur.com/jJx0qRb


r/PleX 2d ago

Help Cannot select a single subtitle option???

3 Upvotes

My father introduced me to his plex account and suggested a foreign film. After hitting play I realized there were no subtitles. After clicking “Select Subtitle Track” in options, and I’m presented with a page that says “Language” at the top, with a white highlighted box that says “Off ✔️” and a box below that says “Search for more…”

Every single option I click in “Search for more…” Immediately leads me back to the page with “Languages” at the top and nothing else has changed.

I’ve tried the app on the PS5 and my iPhone. I tried on multiple movies in English and Chinese. I’ve tried multiple subtitles tracks.

Please help me 🙏


r/PleX 2d ago

Help Tablet recommendations?

0 Upvotes

My Amazon fire 8 requires transcoding for my library ( mostly h265). My plex server is a synology ds918+ which isn't the most powerful thing so I was looking to get something that's cheap and works with h265.

My tablet is dying anyway so I need one

Any suggestions on an affordable tablet that supports h265? It will only be used for plex


r/PleX 2d ago

Help Force NAS to transcode?

Thumbnail
0 Upvotes

r/PleX 3d ago

Help How to name extra that is picture in picture commentary over the movie?

Post image
53 Upvotes

In Troy 4k UHD release. there is 2 hr 42 minute commentary on the extras disc where the you see and hear actors in a PIP window give commentary about the scene in the background. I creating folders for extras using the naming conventions in the support document , but it doesn't cover video commentaries. How would you name the extras folder and file for this commentary ?

Description from the back of the box is

"In Movie Experience"2006 picture-in-picture commentary of the theatrical version of the film(162:49)

Screenshot from extra is attached.

And here is the list of directory types that Plex recognizes.

- Behind The Scenes
- Deleted Scenes
- Featurettes
- Interviews
- Scenes
- Shorts
- Trailers
- Other

Note: I'm making a table mapping the various extras I find on discs to the directory name, so I (ideally) don't have to ask again in the future.

Thanks!


r/PleX 2d ago

Help Passthrough being wonky?

1 Upvotes

Hi I am having problems getting audio from DTS-HD MA.

My chain of command is the SHIELD 2019 Tube -> Hisense AX5140q -> LG B5.

I have passthrough and bitstream enabled on the B5 and all audio formats enabled on the Shield itself. Yet I’m getting zero audio when I attempt to watch something with that format.

Any suggestions?


r/PleX 2d ago

Discussion Is Plex even worth getting into now after the lifetime price increase?

0 Upvotes

I was thinking of setting up a media server, when I found out recently about Plex’s price change a month or so ago. Is it even worth trying to use Plex now?


r/PleX 3d ago

Help Struggling to get Plex to play back consistently

3 Upvotes

Hi everyone! I feel like I’m missing something because so many people seem to have great results building Plex servers but I constantly deal with freezing videos. All too often the movie I’m watching freezes and I have to go back to the title page and play it again. Sometimes it won’t even start :(

I’ve tried: * Transcoding on my 2018 Mac Mini i7 64GB. * Direct streaming from the Mac or from my Synology 1522+ via hardwired 10GB Ethernet.

Playing back Original Quality via hardwired Ethernet usually works but sometimes still freezes giving me an error that my internet connection isn’t fast enough to play back the media.

I’ve confirmed my Shield is connected correctly and getting full 1GB speed since that’s the limitation of its Ethernet port. Same with Apple TV, which sometimes works when it doesn’t.

Trying to play on my bedroom TV via WiFi mesh (ATT’s newest WiFi routers and extenders) rarely works even though I have no issues watching any streaming service.

Is there a setting I’m missing somewhere or any other advice I could try? Is neither hardware good enough to run this server on? Open to any and all solutions. Thank you in advance for any help.


r/PleX 3d ago

Help Plex is creating unnamed collections

Post image
8 Upvotes

Hey everyone. I'm wondering if anyone would be able to give me any insight into why Plex keeps creating this unnamed collection. I keep deleting it and yet it keeps coming back.

It's created by plex itself by the looks of it, my script that handles collections doesn't have it at all.


r/PleX 3d ago

Help Father in law keeps being logged out

18 Upvotes

I have a weird problem I hope someone has an idea on. My father-in-law keeps getting logged out of Plex. Every system he uses, he inevitably looses access, and I have to help him log back in. He is a Mac user, and it happens on his laptop, desktop, and his iPad. He is the only user I have that this is happening to. I have other Mac users who do not have this problem, so it's clearly something about the way he is using it. Note also that he is not tech savvy enough to log out of Plex, so that doesn't appear to be the issue either.

Does anyone have any ideas?

*Edit with more information*

  1. He is using the Plex app on his desktop and his iPad. He is using the browser on his macbook. Both situations have this issue.

  2. He is the only person using his equipment.

I'm looking for suggestions as to what types of things that are Mac specific he could be doing. All I know is he doesn't know how to log out - I can't even walk him through how to log in even though I made sure he has his password saved in iCloud.


r/PleX 2d ago

Help Cant purchase plex pass from india :(

0 Upvotes

Hi , i really want to buy the remote pass for plex , but since im in india the payment is not going through , i have no way to pay :( can anyone guide me

also i cant seem to purchase from google play for some reason


r/PleX 3d ago

Solved New Firestick UI Broke Audio Streaming

4 Upvotes

I was trying to watch a 4k HDR TV show that only has a DTS audio stream, from my local Plex server with Direct Streaming, Direct Play, and HDMI Passthrough enabled. So, I effectively have my Firestick configured for "Send me everything as fast-as-you-can, and don't touch anything" mode.

With the old Firestick UI, the show played perfectly with the DTS audio processed by my AV Amp.

With the new Firestick UI, there is no audio during playback, and my AV Amp says that the audio stream is "Unknown". The new UI didn't have any configurable settings for how Audio would be played, while the old UI did (though, I had the old UI set to the same fast-as-you-can, don't touch anything mode).

I miss the old UI.

Is there a solution?


r/PleX 3d ago

Discussion Amazon Fire-TV Plex app doesn't stop player client when tv is off?

0 Upvotes

I like to measure the peak bandwidth that my internet can output and I have noticed that, in the last two weeks or so, I have consistently had 2 users that use Amazon Fire-TV to watch Plex. Every time I view the status of their playback it is paused and they are at the same exact point in whatever they were watching the last time I checked.

Has anyone else noticed this phenomenon with their users? I don't think that these people would just leave their TVs on and paused for this duration of time.


r/PleX 4d ago

Solved Plex randomly skips 2-5 seconds or briefly plays in slow motion

10 Upvotes

Hi all, I’m having a strange playback issue with Plex where certain files randomly skip 2-5 seconds, briefly play in slow motion, or occasionally freeze completely.
I’m using Plex Docker server on a Beelink N150 / 16GB RAM and usually watch via PS5 Plex app or Samsung Plex app.
Most files play well, but the problem is reproducible with specific movies/shows, which makes me suspect a format issue rather than network instability.
Server-side everything looks fine. It even happens during direct stream like this:

Container: MKV → MP4
Video: Direct Stream H264 1080p
Audio: Direct Stream EAC3 5.1
Subtitles: Direct Stream SRT
Bitrate: ~10 Mbps

With force direct play, both the PS5 and Samsung TV can’t play these files at all.
I’ve also seen it with HEVC files. CPU/buffering doesn’t seem to be the issue, I’ve seen it happen while Plex had plenty buffered and transcoding was already throttled.
Could this be caused by the file? Or some PS5/Samsung Plex compatibility issue?


r/PleX 2d ago

Help Plex asking me to pay to stream in my own home?

Post image
0 Upvotes

I don’t really understand. I had a free trial prior just to stream at someone’s house once, and now this happens at home on my TV? Works on my phone though


r/PleX 3d ago

Help All of my Music stopped working... after cloud backup and restore

Thumbnail
0 Upvotes