All Activity
- Past hour
-
Azizejbarah joined the community
-
Mcmoo_Grandpa joined the community
-
Emby Server offline for remote users after a few days
ebr replied to Bleazo's topic in General/Windows
Hi. Exactly what do you mean by "goes offline"? -
Emby Server offline for remote users after a few days
Abobader replied to Bleazo's topic in General/Windows
Hello Bleazo, ** This is an auto reply ** Please wait for someone from staff support or our members to reply to you. It's recommended to provide more info, as it explain in this thread: Thank you. Emby Team -
Bleazo started following Emby Server offline for remote users after a few days
-
Hello All. Im an ex Plexer, now moved over to Emby and I have an issue....... Basically, I had plex working a treat of my PC, never ever went offline for remote users but Emby seems to be doing it every few days. A quick "restart Emby server" fixes the issue but why should i have to keep doing that. I only know its offline when one of my mates text me and moan. Internally for all the TV's in the house it never goes offline, its always available. Any ideas, is there something obvious ive missed here??? Thanks People
-
为伱 joined the community
-
Cenda32 joined the community
-
xcrazyxchickx joined the community
-
waelo joined the community
-
我也不知道怎么回事,现在好像可以了,可能是strm工具的问题。我换了生成的软件,还有辅助软件也更新了,没用老的生成工具了,现在可以,原来用的是operlist的
-
Sancoo joined the community
-
998 joined the community
-
I built the Plexamp "Sonic Analysis" experience for Emby — self-hosted. Anyone Interested? Want to test it?
kaj replied to kaj's topic in Third Party Apps
I'll DM you, thanks -
Bleazo joined the community
-
ukyyy joined the community
-
so the plugin would read in the monitored but unfulfilled movies from radarr, understand them as "coming soon" and create a placeholder movie on emby so Users can see the movie is coming soon. And if necessary provide a webhook to radarr to support deletion (or move) of the coming placeholder movie, when radarr is about to make the real one go live? Or just clean the coming soon movie up on a scheduled task, when radarr stops reporting it as coming soon (because radarr has made it live itself, or its no longer coming soon due to change of mind). have i got the gist?
-
Again, its not the size... The only thing that will completely solve this would be to eliminate that type of treatment and only have ones with more square edges or to have an option in the app(s) to not show a container background if a valid image loads.
-
@redkattYou too, please...
-
Yeah so.. Heatwave ruined pretty much everything that was planned for now so... New beta version (5.55.3.0) in the catalog. Added the safe zone. Drag and drop to create a safe zone, uncheck the global check box if you want it to be applied to specific tags only. When using tags just give it a name, where you can see the name "bob" and then give the videos you want using the safe zone the same tag name as you have entered in the plugin. Icons will not be drawn in the safe zone and will be moved to closest available corner with space.
-
Thought the same, when I checked the releases. There hasn't been an Android release since a long time.
-
Joxoo started following LG 1.0.50 Aspect Ratio doesn't work
-
Hi! TV LG C1 Aspect Ratio doesn't work in all of my video formats. Please fix it
- Today
-
Issue still remains in this version. Immediate crash upon playing with USB audio.
-
hatharry started following Does anyone else want or need this?
-
This feature has been added, try saying "Alexa, Ask emby home to play a few albums"
-
It's the drop shadow of the image treatment that creates what looks like a gap.
-
The media info gets deleted after a rescan of the web channels which is probably why it loses its resume position.
-
SRT subtitles force software decoding on iOS
mssssman replied to mssssman's topic in Apple iOS / macOS
It's fixed now! -
I don't know. emby is managing my meta data. Basically everything is on standard settings I guess. here you see a picture from emby, same problem
-
goblin2k3 started following Audio Pass thru for M4a files not working?
-
Movies don't resume, they start from beginning
sa2000 replied to Nabukodonosor's topic in Android TV / Fire TV
@NabukodonosorIf you have a reasonable size movie that this happens on, i could send you an upload link and we will see if we can reprodudce the issue on an Amazon Fire TV - by reasonable size I mean 3Gb or under. The issue may be as suggested by @speechlesearlier in this thread in this post Your screen capture video that you posted here confirms that the resume offset for the user account was passed on to the emby app by the server A couple of statements you made are some clues which we need to keep in mind 1. In this post you stated is it always the next day or after ? 2. And in this post you mentioned So the first time after a period of time, the app is failing to respect the resume offset or loses it in its handover to the video player. -
Sulfonamide started following How to remove tag with 0 item?
-
By using API /Tag, I can get all tags with their item number in my Emby server. I find that there are some tags with 0 item (it means the tag has been added to some media but finally removed). How to remove them? I have tried several ways: There is no APT of DELETE /Tag. Setting / Database / Vacuum the database on the next Emby Server startup Setting / Scheduled Tasks / Vacuum Database But not useful. Tags with 0 item still exists. What should I do?
-
Movies don't resume, they start from beginning
Nabukodonosor replied to Nabukodonosor's topic in Android TV / Fire TV
So you guys really can't fix this? It's annoying AF! -
I was not aware of that, thank's for the clarification. Guess I will just rename the files in US airing order to match it with TheTVDB.
-
GrimReaper started following Force episode metadata from IMDB
-
Two things: 1. Nothing is ever scraped from IMDB (cost-prohibitive) 2. You can't identify an episode, only complete TV show So the answer to your questions is No. You can either find other provider (TMDB, TVMaze...) that maybe has metadata in the order that you prefer (or maybe TVDB does under DVD order) or insert metadata/artwork manually or make changes on TVDB yourself if item not locked. Anyway, specific example would help for maybe finding a solution. How to Report a Problem
-
uniQ168 started following Force episode metadata from IMDB
-
Hi everyone, I'm having an issue with my Emby TV show library. The episode titles and metadata on TheTVDB differ from what's listed on IMDb and all other episode guides. As a result, the metadata in Emby is incorrect as well. I've already tried manually identifying the show using the IMDb ID, but Emby keeps overwriting the data with the 'wrong' info from TheTVDB. Is there any way to force specific metadata?
-
Radarr API: https://radarr.video/docs/api/ Call: curl -X GET \ "http://RADARR:7878/api/v3/movie" \ -H "X-Api-Key: API_KEY" Response (shortened): [ { "id": 1, "title": "Alien", "monitored": true }, { "id": 2, "title": "Avatar", "monitored": false } ] Then you can filter for "monitored": true. Or you filter for "monitored": true from the beginning using jq with e.g: curl -s \ -H "X-Api-Key: API_KEY" \ "http://RADARR:7878/api/v3/movie" | jq '.[] | select(.monitored == true)' *********************************************************************************************************************************************************** Sonarr API: https://sonarr.tv/docs/api/#v3/description/introduction Call: curl -X GET \ "http://SONARR:8989/api/v3/series" \ -H "X-Api-Key: API_KEY" Response: Same as with Radarr Filter from beginning using jq: curl -s \ -H "X-Api-Key: API_KEY" \ "http://SONARR:8989/api/v3/series" | jq '.[] | select(.monitored == true)' ********************************************************************************************************************* The json Output you get with the API calls gives you TMDB, IMDB, TVDB, TVMAze etc. IDs you can work with to import the monitored items into the Coming Soon Section your plugin creates in Emby. Example output of a movie: { "title": "Blade", "originalTitle": "Blade", "originalLanguage": { "id": 1, "name": "English" }, "alternateTitles": [ { "sourceType": "tmdb", "movieMetadataId": 13, "title": "Marvel Studios' Blade", "id": 257 }, { "sourceType": "tmdb", "movieMetadataId": 13, "title": "დანა", "id": 258 }, { "sourceType": "tmdb", "movieMetadataId": 13, "title": "ხმალი", "id": 259 }, { "sourceType": "tmdb", "movieMetadataId": 13, "title": "The Blade", "id": 260 }, { "sourceType": "tmdb", "movieMetadataId": 13, "title": "Asmenys", "id": 261 }, { "sourceType": "tmdb", "movieMetadataId": 13, "title": "Penge", "id": 262 }, { "sourceType": "tmdb", "movieMetadataId": 13, "title": "Блэйд", "id": 263 }, { "sourceType": "tmdb", "movieMetadataId": 13, "title": "Săn Quỷ", "id": 264 }, { "sourceType": "tmdb", "movieMetadataId": 13, "title": "新刀锋战士", "id": 265 } ], "secondaryYearSourceId": 0, "sortTitle": "blade", "sizeOnDisk": 0, "status": "announced", "overview": "Blade ist sowohl ein Vampir als auch ein Mensch. Seine Mutter wurde von einem Vampir gebissen, als sie mit ihm schwanger war, doch sie starb bei dessen Geburt. Er ist im Gegensatz zu anderen Vampiren resistent gegen Sonnenlicht und kann das Tageslicht unbeschadet betreten. Gleichwohl verfügt er über die gleichen Kräfte und die gleiche Gier nach Blut wie die Vampire. Blade grenzt sich jedoch deutlich von den Vampiren ab, da er die Menschen vor ihnen beschützen will.", "images": [ { "coverType": "poster", "url": "/MediaCover/19/poster.jpg?lastWrite=639162776331543830", "remoteUrl": "https://image.tmdb.org/t/p/original/qctzZ0LmG88k2DGqNMFTUW2wXo2.jpg" }, { "coverType": "fanart", "url": "/MediaCover/19/fanart.jpg?lastWrite=639162776330983816", "remoteUrl": "https://image.tmdb.org/t/p/original/hFtJz4TvoiJJcw2ZOMdhK22aU9P.jpg" } ], "website": "https://www.marvel.com/movies/blade", "year": 0, "youTubeTrailerId": "", "studio": "Marvel Studios", "path": "/media/Libraries/MOVIES/Blade () [tmdb-617127]", "qualityProfileId": 7, "hasFile": false, "movieFileId": 0, "monitored": true, "minimumAvailability": "announced", "isAvailable": true, "folderName": "/media/Libraries/MOVIES/Blade () [tmdb-617127]", "runtime": 0, "cleanTitle": "blade", "imdbId": "tt10671440", "tmdbId": 617127, "titleSlug": "617127", "rootFolderPath": "/media/Libraries/MOVIES", "genres": [ "Fantasy" ], "keywords": [ "anti hero", "based on comic", "hero", "marvel cinematic universe (mcu)", "superhero", "vampire" ], "tags": [], "added": "2024-11-21T18:17:00Z", "ratings": { "tmdb": { "votes": 0, "value": 0, "type": "user" } }, "popularity": 2.1345, "lastSearchTime": "2025-06-04T13:06:18Z", "statistics": { "movieFileCount": 0, "sizeOnDisk": 0, "releaseGroups": [] }, "id": 19 } Example output of a TV show: { "title": "VisionQuest", "alternateTitles": [], "sortTitle": "visionquest", "status": "upcoming", "ended": false, "overview": "After the events of \"WandaVision\", the Vision tries to regain his memory and identity.", "nextAiring": "2026-10-14T04:00:00Z", "network": "Disney+", "airTime": "00:00", "images": [ { "coverType": "banner", "url": "/MediaCover/159/banner.jpg?lastWrite=639166772830478702", "remoteUrl": "https://artworks.thetvdb.com/banners/v4/series/426606/banners/6a28c0196e7df.jpg" }, { "coverType": "poster", "url": "/MediaCover/159/poster.jpg?lastWrite=639162777702699574", "remoteUrl": "https://artworks.thetvdb.com/banners/v4/series/426606/posters/68eaa69a07baa.jpg" }, { "coverType": "fanart", "url": "/MediaCover/159/fanart.jpg?lastWrite=639162777702219562", "remoteUrl": "https://artworks.thetvdb.com/banners/v4/series/426606/backgrounds/6a04fabe86187.jpg" } ], "originalLanguage": { "id": 1, "name": "English" }, "seasons": [ { "seasonNumber": 1, "monitored": true, "statistics": { "nextAiring": "2026-10-14T04:00:00Z", "episodeFileCount": 0, "episodeCount": 0, "totalEpisodeCount": 1, "sizeOnDisk": 0, "releaseGroups": [], "percentOfEpisodes": 0 } } ], "year": 2026, "path": "/media/Libraries/SERIES/VisionQuest (2026) [tvdb-426606]", "qualityProfileId": 4, "seasonFolder": true, "monitored": true, "monitorNewItems": "all", "useSceneNumbering": false, "runtime": 0, "tvdbId": 426606, "tvRageId": 0, "tvMazeId": 64950, "tmdbId": 213375, "firstAired": "2026-10-14T00:00:00Z", "lastAired": "2026-10-14T00:00:00Z", "seriesType": "standard", "cleanTitle": "visionquest", "imdbId": "tt23112594", "titleSlug": "visionquest", "rootFolderPath": "/media/Libraries/SERIES", "genres": [ "Adventure", "Drama", "Science Fiction" ], "tags": [], "added": "2026-05-17T21:10:37Z", "ratings": { "votes": 0, "value": 0 }, "statistics": { "seasonCount": 1, "episodeFileCount": 0, "episodeCount": 0, "totalEpisodeCount": 1, "sizeOnDisk": 0, "releaseGroups": [], "percentOfEpisodes": 0 }, "languageProfileId": 1, "id": 159 }
