Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 11/01/25 in all areas

  1. You are a genius! I was about to make so it couldn't go past this and this scale. I have a tendency to overthink things at times. A simple replace "," with "." fixed it. Very fast way to fix it. Will add it to Github later but for now back to the things i have to do before people get annoyed with me. Please report if i messed up again. EmbyIcons.dll
    2 points
  2. Geez some people have miserable lives that they have their knickers in a twist on something like this. I don’t celebrate halloween nor does it ger celebrated here very much. It is something that is interesting and cute to see for few days.
    2 points
  3. Hello, Is it possible that in a version of emby a "ping pong" is performed in websocket to maintain a connection via a reverse proxy? Let me explain. Apart from reverse proxies such as caddy or traefik (for those I know) there is no real timeout for websockets. For reverse proxies like haproxy or nginx, the timeout is defined either by default or by the user. In the case of haproxy or nginx, if someone pauses a video that lasts more than an hour (a movie, for example), the websocket timeout will occur before the end of the movie. Or if, when playing an episode of a series lasting 40 minutes, the viewer pauses the video for 20 minutes, the connection will be closed before the end of the episode. Having the client send a message and the server reply every X seconds/minutes would eliminate the problem and prevent the connection from staying open for 1 hour for no reason, as in the nginx configuration. Also, I saw a message saying that if a connection was closed unexpectedly, for resource reasons, there was no attempt to reconnect. Why not set up a number of reconnection attempts? For example, the client tries to reconnect 3 times, and if none of the attempts work, the connection is aborted. This would, I think, allow better websockets management and avoid connections being open for hours. Or even when changing networks (LTE->wifi or wifi->LTE), this would make it easier to re-establish the connection than quitting the application and reopening it. To avoid sending just a "ping" and a "pong", useful information can be sent through websockets when the client supports them, such as the position of the video playback (which is currently sent via http), because a request via websocket is faster than an http request and sends, with the same information in the body, less data than an http request.
    1 point
  4. Colorwise based on tedhinklaters Finimalism JF theme, which I really like Lots of base code borrowed by the great @fillidill. Cannot thank him enough for the great base he set up with the Plex inspired Emby theme. A few things: I made this for myself in first place (FullHD Monitor), tested virtually up to 4K and it looked OK to me CSS is working with 4.9.1.80 stable, I will try to fix visual errors coming from changed CSS in future Emby updates The episode count icon is placed to be in line with the Coverart and EmbyIcons Plugins. If you don't use it, change line 341 For everything else, the code is provided as is due to the lack of time on my side. Please don't ask for any changes like the base colors, instead feel free to change the theme to your own delight and post the css here so that everyone can benefit from your work. In times of so much coding LLMs, changing the theme to your favor shouldn't be a big problem anymore (I also used it to clean up the code and remove doublettes). Bildschirmaufnahme 2025-10-02 212535.mp4 Download from here: https://github.com/v1rusnl/Embymalism
    1 point
  5. I recently found a need to look up additional information on a director. I was hoping to look at the director's profile and see not only the movies I had in my collection but also a list of other movies that they have directed. This would be displayed below the library's current movies. ex: My movies: Movie 1, Movie 2 Other movies by this person: Movie 3, Movie4 ================ This could help one expand their library and to discover a missing gem.
    1 point
  6. Sorry, I'll edit the post - referring to personal ratings
    1 point
  7. It works, so, when it would be avail on play store for all ?
    1 point
  8. 1 point
  9. Thanks to you, me and a friend got this made :
    1 point
  10. It always changes from year-to-year and even between higher and lower end models sometimes too. Samsung stopped adding DTS in 2018 and I believe LG was going to start adding DTS in their premium sets only again at some point. That's how I have mine setup with Xbox One X in one HDMI port and my Shield in the other port of the soundbar. I get everything those devices support and I don't have to worry about whether my TV will passthrough anything. As far as the Samsung app goes though you are stuck with what's in those charts. Between the limits of the codec decoder and what Tizen supports it's really limited and somewhat geared toward what the streaming services use (DD+ Atmos, etc). Emby will still play them, just transcoded on the fly.
    1 point
  11. Should be the contents of /modules/actionsheet/ (actionsheet.js and actionsheet.css).
    1 point
  12. Yes, I will be using one (mini) as an Emby server along with many docker containers and one homeassistant vm to replace an actual Xeon server. It will easily handle it and use like 1/10th the power. I do agree it would be nice to have a real installer for it as I was surprised it doesn't even start upon reboot. I'll be picking it up locally Monday evening. launchd can start jobs without logging in, those are launchdaemons not launchagents. Some sample commands on newer MACOS versions: To "load" and run the launchdaemon so it starts now and whenever the system is booted:: launchctl bootstrap gui/`id -u` ~/Library/LaunchDaemons/com.fatula.emby.plist To stop runing it at boot: launchctl bootout gui/`id -u` ~/Library/LaunchDaemons/com.fatula.emby.plist To shutdown Emby but leave the launchdaemon for the next boot: launchctl kill SIGTERM gui/`id -u`/com.fatula.emby.plist To Start emby if shutdown by the above or from the dashboard: launchctl kickstart gui/`id -u`/com.fatula.emby.plist
    1 point
  13. Yes, good point but what was suggested would make it impossible for the admin to access the system to do said maintenance
    1 point
  14. That is my guess too. The plugin uses it's own font so in theory it shouldn't be able to happen but the way i set it up it might just nudge the line up a bit. I will fix it as soon as i can, i'm very busy at the moment so might take a little while but if i get the time it will be dedicated to this!
    1 point
  15. Thank you, all the info i need for now.
    1 point
  16. I some how missed this, i will look into it. Thanks for reporting!
    1 point
  17. For some reason, the RT rating font does not align with the community rating value in terms top margin or am I missing something? Dimensions of both icons are the same. Could the comma in community rating be the culprit? It seems the RT rating aligns with the comma. One other suggestion: It would be nice the be able to not display the % in RT rating as an option.
    1 point
  18. Ok, @Luke For Emby server, does it fork and perhaps daemonize itself? It appears Emby and Launchd are not fully communicating about a restart triggered from within Emby. But using launchd to start it is ideal as if Emby aborted for some reason, it can autorestart it. Maybe you are not daemonizing, so I am guessing your restart in the client or web interface from the dashboard actually does a sort of shutdown which means a 0 exit status (so launchd says all is well) and then starts it again via some method unknown to me, which then launchd loses track of it as it "stopped" with a normal exit status but it will never restart it on abort now as it thinks it exited ok. I presume whatever the method, it's a different process id? Let me know. If you can tell me exactly how a restart from the dashboard works, might help. I additionally find restart from the dashboard when using macos unreliable, another reason I'd like to know the technical details of HOW a client restarts emby. In the meantime, I guess my rule is do not use the dashboard to restart Emby. Use MacOS to do so.
    1 point
  19. This. At least for lower speeds. I find 1.15x to be ideal as anything faster is very noticeably sped up and a bit hard to follow. After watching for a while I can increase the speed to 1.25 or 1.50, but starting at a lower speed helps me acclimatize. YouTube now has a slider to change speed in increments of 0.05x at the top of the speed menu. I think this would be a good idea. Quick shortcuts for larger increments and a slider for smaller ones.
    1 point
  20. A little of patience, the new app should fix the problem, it was one of the main issue with app stealing or loosing focus with the player even when it was the one embedded ! The beta is approaching end
    1 point
  21. I'm experiencing the same problem on apple tv 4k with any AV1 video that I have. Is there any progress on this? I can share a problematic video privately if needed.
    1 point
  22. You could certainly create a different user and install it under that. user. You could also use docker or orbstack, or colima but you will lose the GPU, assuming you are using it now. You can use launchd, here's a post where a user did so. There might be changes needed but shouldn't be very hard. I have not created a new one yet, but will ion the next few weeks.
    1 point
  23. If you still have your images next to media and want to keep it that way you can enable the option in each library to keep a cached copy of images in the metadata folder. All of your images will still be stored next to the media, but emby will copy them over to the metadata folder and read from that copy. You'll have to turn on this setting for each library individually and then do a scan of the server's metadata folder for emby to start copying the existing images.
    1 point
  24. Hi we are looking into it. Thanks.
    1 point
  25. Hi, no, but we’re going to be revamping Home Screen settings so stay tuned.
    1 point
  26. I don't know if its a new thing, but I see the Halloween themed trick bar on the Android app on my tv. It was a very nice surprise Great job Emby devs and may you have lots of nice candy !!
    1 point
  27. Hi All, just a gentle reminder to remain civil and to respect each others differing opinions. Let's try to avoid any personal attacks on other members please. Thanks.
    1 point
  28. Are you somehow watching with the controls visible all the time? That would seem a pretty annoying distraction in any case! Paul
    1 point
  29. This has got the be the dumbest thing I've read today. Chill out and watch your media. You sound like that 90 year old complaining about a ball being hit into their yard.
    1 point
  30. It's also visible on a Samsung smart TV... and I find it ugly and unprofessional. I agree that if it's going to be there, it should be optional. Today I put on a movie and decided to fast-forward... and there it was, the pumpkin. While I'm at it, I also don't like the color they've switched to on the player. At night, in the dark in the living room, it's hard to see information like the movie's year and end time. Before, it was white and looked great.
    1 point
  31. I can hardly think of any less offensive temporary theme than this pumpkin. And since when did religion forbid non-religious celebrations? (Is it even a celebration? - it's just something that happens around a particular date, like a birthday does.) Or do they seriously think that people who enjoy Halloween are actually devil worshippers? Obviously, adding back the old option to refuse seasonal themes should be trivial, and upsetting to no one at all. Paul
    1 point
  32. Yet another feature with no opt in or out Why not make it an option.
    1 point
  33. Why don't you just use Metadata Manager and you'd only need to scroll?
    1 point
  34. Received this today so looking good now. Hi Shaun We have received the new version from Emby team which has passed our QA. We will start publishing of the app in our app store globally late today/tomorrow. Best, Lenart
    1 point
  35. Yea something similar was reported with the Samsung app. We are embedding the official youtube sdk and it must be keeping some data that eventually causes this problem. That's why clearing app data resolves it. Hopefully this will not be a long term problem.
    1 point
  36. The ffmpeg log will have the raw error message. We are looking into this,. Thanks guys.
    1 point
  37. Any plans to add *tream codes support for this plugin?
    1 point
  38. HI, yes I agree that this is something we should add. Thanks.
    1 point
  39. There actually is one already, but it's just very high (30 minutes). We can lower it a little.
    0 points
  40. Of course not. My objection to this garbage is that it shows up every time I play something if I FF or RW or pause the show I see a stupid and unnecessary pumpkin (or other image that just gets into my view) that I do NOT want to see at all. I have no objections to the fact that it is available. My objection is that it is visually ugly to me and cannot be turned off. Introducing something like this without giving the users the ability to turn it off is totally alien to professionalism. It is something a 12 year old might do. No. That insults 12 year olds as most have the good sense to not force others to view their quirkiness. The "pumpkin" is much like homosexual sex, I do not care if it is done it is just objectionable that I am forced to see it.
    0 points
  41. I see absolutely no reason why Emby wants to FORCE this kid of "cuteness" on their user base. It is like they are trying to move from their statement: "Your media your way" to "Your media our way" and that is offensive to me. But I have found that when Emby does something as stupid as this they stick with it for quite a while and they eventually fix it quietly and never say a word about the fix. It is like their arbitrary removal of the alphapicker for pictures in the web interface. Where they removed it because it was not working correctly and said explicitly that it was gone for good. And then several months later it magically slips back in with no announcement. I expect this abomination will face the same fate and it will either go away or we will be allowed to disable it in the future. But it will disappear some time after we just quit complaining and allow Emby to come to the correct decision on their own. I guess I can stand it for that long but I do worry that Emby is beginning to value cuteness over functionality or user desires. BTW: I do NOT find it cute at all. It is simply a distraction that the world would be better off without. But what do I know I am simply an old Emby user that relies on Emby for most of my TV viewing and I have about 5000 movies and nearly 1000 TV shows. What do I know about watching content through Emby. I do not see anywhere else I could watch my content in comfort as I absolutely will NOT use Plex and I do not like dealing with people that do not give credit to the source code's original developers like Jellyfin and there really is nothing else out their that does what I need. I like stability in my world and unwanted or unneeded fluff is not stabilizing my watching experience. BTW2: It has now oozed into my Android app on my Shield and I am subjected to that distracting hideous fluff every time I use Emby. It is very discouraging that Emby is so callous as to FORCE this crap on all their users. It seems totally intrusive by Emby. If I want to see pumpkins or anything else like that I can just go to Kleather’s Pumpkin Patch a bit down the road from me. At least I can eat those or make "Pumpkin Juice." I also do NOT want any "holiday" themes or junk on my system but Emby seems too stupid to even support their user's desires. I have "no seasonal themes" selected but Emby does not respect that.
    0 points
×
×
  • Create New...