All Activity
- Past hour
-
Elizabethbetty joined the community
-
The latest version 2.3.3 doesn't work
MediaEmby1968 replied to MediaEmby1968's topic in Samsung Smart TV
I downloaded it from here https://github.com/MediaBrowser/Emby.Releases/tree/master and in this link it says that the latest version dated 03/13/2026 is 2.3.3 My TV is a UK5500 from 2016 -
Gustavo garcete joined the community
-
Crobbins11 joined the community
-
kyajulik89 joined the community
-
lghdelavega23 joined the community
-
lumo joined the community
-
Crobbins joined the community
-
Speechless joined the community
-
dazi joined the community
-
hpark8282 joined the community
-
Moved media Library to new location. Some media's metadata points to old Paths and won't play.
Sorahl replied to beefsnack's topic in General/Windows
Could be a stupid question but . Did you rescan library files? -
Muchas gracias era un tema redireccion de puertos
-
HaraldBluetooth started following Emby for all TV layouts. Director is missing from movie details
-
Emby for all TV layouts. Director is missing from movie details
HaraldBluetooth posted a topic in Feature Requests
Hi, I don't know how long the director has been missing from the movie details screen, but I'm sure, that the director has been there in the past. I don't believe that's a deliberate choice. Director is the most important thing about a movie, and if you in Cast & Crew have f.ex. 50 actors, you have to scroll and scroll and scroll to find the most important thing. That's why it is displayed in the Emby web app in the first place. As you know most of us are watching movies on our televisions. If this isn't displayed in any TV layouts, it's about time, because it has been there once upon a time. Attached is a screenshot from LG TV app and from the same page from Edge browser in Windows 11, where you can see the Director just below Overview field. -
Good Morning all! So i have an interesting issue that seems to exist only in the Windows Store Emby App In Recordings, I change the display to File Name (Why can't i just list by Series??) the display is then in file name order with each recording listed. You can see there each episode of 9-1-1: Nashville is listed separately. This makes for a very long listing If I use the Browser version of Emby - I get this (with the same display settings Here you see the listing of recorded show as it should be. If a show has multiple episodes then it has the green dot with a number in the upper right corner. If you click on that program you then get the listing of all the recorded episodes by season. I am hoping that this is something I have stupidly done wrong. What has I missed? If this ends up being a bug, i'll circle back and load logs etc in this msg. Thanks!! John
- Today
-
Brudertac started following Kein Kompatibler Stream verfügbar wenn Verbindung über NPM hergestellt wird
-
Kein Kompatibler Stream verfügbar wenn Verbindung über NPM hergestellt wird
Brudertac posted a topic in German
Hallo zusammen, hier läuft ein Emby Server unter Unraid. Verbindung wird hergestellt über NGinxProxyManager. Nun habe ich zum Testen im Emby Server die Experimentelle h265 Codierung aktiviert. Wenn sich jetzt ein Client von extern über den NPM mit Emby verbindet dann erhält er die Meldung das kein Kompatibler Stream verfügbar ist. Stellt man die Verbindung mit dem Server aber im lokalen Netzwerk her dann funktioniert das ganze. Also vermute ich das es am NPM liegt. Kann das sein? Der läuft hier schon ziemlich lange und eigentlich komplett ohne Probleme. Danke! VG Brudertac -
RTL punctuation issue in Hebrew subtitles (when transcoding)
adir4289 replied to adir4289's topic in Android
Hi Luke! any news? -
You didn't answer the question (Realtime sync or start sync). Anyway, without logs impossible to say. If you have concerns about your public IP, I cannot help you. btw, publishing public/WAN IP is not/should never be security risk maybe a privacy issue. If it is, that's a complete fail. You can send me logs via private message if you want, only debug logs includes confidential data and should never be posted in public when the server is exposed to the internet. What I can say with this limited info, it's very likely not a plugin issue, sounds more like a network/configuration issue.
-
And a minor api endpoint modification request: pass user id on /api/assistant/chat When calling /api/assistant/chat, there is no way to specify which user the request is on behalf of. All calls made with a single service API key are attributed to the key owner, making it impossible to maintain per-user context (recommendations, history, preferences). I believe is due to const user = request.user as SessionUser (API key owner) and const { messages } = request.body (no userId accepted). On a high level, it would be something like this on src/routes/assistant/handlers/chat.ts // NOW: interface ChatBody { messages: UIMessage[] system?: string } // AFTER Add userId? to the body interface: interface ChatBody { messages: UIMessage[] system?: string userId?: string // optional override from external system } // NOW: const user = request.user as SessionUser const { messages } = request.body // AFTER Resolve the effective user right after const user = ...: const user = request.user as SessionUser const { messages, userId: requestedUserId } = request.body const effectiveUserId = requestedUserId ?? user.id // ?? means: use requestedUserId if provided, otherwise fall back to user.id // NOW: const systemPrompt = await buildSystemPrompt(user.id, user.isAdmin) const toolContext = { userId: user.id, ... } // AFTER Replace the two occurrences of user.id downstream: const systemPrompt = await buildSystemPrompt(effectiveUserId, user.isAdmin) const toolContext = { userId: effectiveUserId, // ← this is what scopes recommendations/history to the right user ... }
-
Ability to have different GENRE artwork for libraries
Luke replied to unisoft's topic in Feature Requests
What do you mean by clashes? -
Nice idea I’ll put this down on my to-do list for next release. Shouldn’t be too hard to fix.
-
Thanks. I will mention adding a mesh network in the article
-
Oh.. that’s a tough one.. My best advice would be to recreate the filters in a new list then and hope it fixes it. Or wait for the current one to refresh (if it’s a dynamic list).
-
That is the way the plugin works and it is fine by me. I use it to put the season on a marathon channel which shows the seasons that are trending
-
HW Tone Mapping Transcoding no longer works after updating to 4.9.1.80 (Synology 220+)
NeverReadyEddie replied to rekit's topic in Synology
Still waiting for 4.10.0.2 to his stable release. Any news on when that might be? -
I believe the smart playlist plugin still works in the beta. I have it installed (but not using), so I can semi-confirm this. My plugin does not support to tag/create collection for a specific season. I could look into adding this as well, but currently no support. From your example the Home Screen Plugin can create a collection based on the episodes or full show that users have been watching in the last week. Just to confirm, if any user have watch S04E07 of scrubs, then you want the whole season 4 to end up in a collection?
-
After doing some digging and checking the mdblist API, it turns out that this movie isn't included in the list in question via the API, but it does appear via the API for the new test list... Actually, no, IT IS included in the API list (it's just that the list was initially limited to 1,000 items...)
-
Good, then we know the matching works correctly. The only think I can think about is if the tags are written too fast and Emby database doesn’t catch up. It’s supposed to be put in a que but I’ll look into it and see if I can put a small wait in between. But if it’s always the same movie despite multiple runs that doesn’t get added this theory might be long fetched.. I will have a look and see if can find anything. Thanks for reporting!
-
I use the smart playlist plugin to make collections that I use in ersatz tv. That is really what delays my updating the server. From what I am seeing this plugin does most of it. What I am uncertain about is whether it tag specific seasons of a given show. eg. I use the query below to generate a collection of seasons of shows that has been watched in the last few months Type: Collection, EpiMode: Season, SourceType: MediaItems WHERE (Media Type is Episode) AND (Last Played is in the last Type: Weeks, Value: 12 for Any User) The key here is that it only tags seasons watch recently other seasons in the respective shows are not tagged. When the results is viewed (in the plugin) it is individual seasons for the shows. ie it outputs a collection of seasons not shows or episodes
-
That's weird—so I created a list on mdblist with just that movie and added the source in emby (your plugin) to a new list, and this time it works...
-
Ability to have different GENRE artwork for libraries
unisoft replied to unisoft's topic in Feature Requests
Nearly 4 years on and nothing done. Also clashes between music and music video library genres.... -
LG 1.0.50 breaks horizontal scrolling on homescreen
unisoft replied to unisoft's topic in LG Smart TV
does it not show in webos24 emulator? it looks like a style sheet error as seems to affect home screen in horizontal view only (TV). TV affected still hasn't received the webOS25 update from LG yet as they are taking so long - so no idea if webos25 affected on the "B6" 48" OLEDS -
Well, that's confusing because the Eeero is a mesh system and NOT a modem... (of course, nothing these days is truly a modem but that's still what they call the network interface to the provider).
-
We are not designed to be file browser but, if you set your library type to "Home Videos" then you may get what you want.
