All Activity
- Past hour
-
Martin 1530 joined the community
-
filomeno04040@gmail.com joined the community
-
Alibaksh joined the community
-
Herald8k joined the community
-
Gaby1505 joined the community
-
Binhui joined the community
-
Kerstin1998 joined the community
-
Layla77 joined the community
-
marielyn joined the community
-
Can you provide an IPK file for users to install ?
rossome replied to asdfasdf123123123's topic in LG Smart TV
Out of curiosity, is there a particular reason you don't distribute an ipk directly, for example through GitHub releases? I have my TV rooted, and I'd really like to be able to install emby without needing to sign into an LG account or go through the Content Store. I completely understand if there are technical, licensing, or policy reasons that make direct distribution impractical. I'm mostly just curious whether that's something you've considered. -
STR8 started following Global music videos path
-
Not sure if this can already be done or if this would be the right place to ask this question but I was wondering if we could have movie soundtracks pulled from movie folders into the music library? So Instead of moving or separating the original movie soundtrack from the actual movie folder (it can stay within the folder) Example: Movie Folder 300 (year) [1080p] Extras Folder Soundtrack Folder The music library can or will scan the movie folders and the soundtrack folder within the movie folder then place and display those soundtracks into the music library correctly named with art, info, artist and so on.
- Today
-
Remote Connections not working with Emby 4.10.0.40 Server Update
Aldursil replied to Bradum's topic in General/Windows
I had a similar issue though I am not sure it's the same. Someone suggested I go into the Admin > Devices page and then remove the device from the list that was not able to connect. Once I did this I was able to re-authenticate and connect to my server again. Maybe try this and see if it helps? -
David Patt started following EMBY cause or consequence my files on hdd get corupted ?
-
EMBY cause or consequence my files on hdd get corupted ?
David Patt posted a topic in General/Windows
SO i have few external hdd with media. Five months ago some movies and tv shows start show 0 kb in size. Ok hdd get corrupted it happens. After that i just dont have time or energy to rebuild emby server so i did this last week( on new hdd). Put few movies and tv shows to emby and few days later again. 0 kb in size. I format hdd, delete Emby. Now in like four days everything is fine. And i copy , move TB of data. I dont suspect Emby of anything. But it happen on two different hdd and on two different pc (i buy new in the meantime). Now i am scared even install new instance of Emby or any media server. So what you think ? Its coincidence or i have something very wrong in my setup or software ? -
Hi, I don’t know what they are. Someone is probing your server looking for holes. One thing you can do to make your server harder to find is use different public router port numbers from the default values.
-
Emby for AppleTV 2.0.9 (1) with Emby Server 4.10.0.40 issues (part 1)
Luke replied to DarkStar1977's topic in Apple TV
@SamES can look at the rest. Thanks. -
Emby for AppleTV 2.0.9 (1) with Emby Server 4.10.0.40 issues (part 1)
Luke replied to DarkStar1977's topic in Apple TV
Hi, at this time the Apple TV app is not able to support this option. -
Never mind. The problem is you restricted all of the user transcoding permissions. Did you make sure to read the help text underneath those options?
-
Can you show me a screenshot of your user audio options?
-
Hi, have you taken a look at this? Backing up & Restoring Emby Server
-
It would have to be in the core server first. There is an open feature request topic about it.
-
A home user could get hundreds over time if you are constantly having browsing data cleared on the browsers.
-
TV Show Status — TMDB-powered Returning/Ended/Cancelled badges for series
Blueskies278 replied to Blueskies278's topic in Plugins
TV Show Status 2.5.134.1 Nothing you have saved changes — every setting keeps its name and default. New Season number on every Upcoming badge — "Season 2 Premiere" rather than "Season Premiere". Web browser only Upcoming badges scale with the card — resize the window and the badge keeps its proportion instead of staying one fixed size. Web browser only Fixed A premiere or finale badge no longer vanishes when the episode airs and the card moves under "Yesterday" In the Emby apps, a premiere or finale that has just aired now keeps its badge on the show's thumbnail for the Flag a premiere or finale this many days ahead window after airing as well as before. Force-close the app once so it drops its cached artwork Badge size now applies to the web Upcoming badge — it was stuck on Medium whatever you chose Web Upcoming badges are now all drawn the same way, so they match each other in size, font and sharpness Known limitation In the Emby apps, a premiere or finale badge appears on every Upcoming card of that show, not just the episode it refers to. Unaired episodes have no artwork of their own, so every card requests the same series image and the server cannot tell them apart. Only a browser can, which is why the per-episode badges are web-only To mark those episodes on TV and phone apps, the companion plugin Trakt Air Dates can put the words in front of the episode title instead EmbyTVShowStatus.dll -
OHHH on the old emby client its sooo sick I love this
-
OK yes it looks sick use a layout on the home screen unchecked shows the spotlight banner but your going to make it also work if it's checked right ? right , yes please
-
I will look into that method. Just a figure of speech.
-
Think I found it, home sections custom title
-
You know that Emby provides many way to configure the home screen and even more in the brand-new stable release?
-
Under Settings - Video Player, click on Energy-Efficient, then on Customize. There, choose NVDEC for hw decoding. Also you can try GPU or GPU-next at thge very bottom, with or without GPU dumb mode. Or you can just start by switching between the three preferences (HQ, Balanced, EE)
-
It would get rid of "Latest" at the first of all on the home screen
-
in the bata i get MPV rendering artifacts running rtx 5060 i can bypass it with cd /opt/Emby-Beta ./Emby -nompv and it fix the artifacts
-
Why do trailers in the windows app have ads but not the web app?
softworkz replied to Mahinepua's topic in Windows & Xbox
Thanks. This is important for knowing from which side of the cake we need to start biting.. @Luke -
Mosetter27 started following New computer
-
Hello! So my computer is starting to act up so I’m getting a new one. What do I need to do to transfer my existing server on my old computer onto the new computer I’m getting tomorrow without full on redoing everything
-
These are all things that Emby is doing already just without the plugin - what do you think/expect that would be different? I'm afraid, that's completely out of range of what a server plugin can do...
-
When adding extension methods to substitute the missing APIs, you do NOT need to change many lines of code - that's the whole point. For example, netstandard2.0 has String.Contains(string) but no overload to specify a comparison like OrdinalIgnoreCase, so if you use that overload (which is included in .net 6), you will get a compilation error when you switch to netstandard2.0. If you have used that method many times, you'll get many errors. But instead of changing all those lines, you can create an extension method on string with that (now missing) signature. The extension method achieves the same but in a way that is compatible with netstandard2.0. Depending on the namespace of the extension method each of your usages of that method will (either automatically or by only adding a using declaration) automatically use the extension method and the errors go away. As soon as you change the targetframework, these will all show up as compile errors, so there's no way to miss any..
