Jump to content

All Activity

This stream auto-updates

  1. Past hour
  2. burrsg101

    Cannot connect when run through HaProxy

    Thats actually part of my confusion. The backend in HaProxy for emby is set to port 8096, and I noticed too that it was only reaching out on 443. Same scenario actually on the other web server I have. Its set to port 80 on its backend, but the capture I ran on that vm showed 443 reaching out as well.
  3. Why not load the usb version until they get the one in the store updated?
  4. brothom

    Unable to Upload Webp

    @iMaks533@LukeI'm currently also experiencing issues uploading a webp as an image (primary, logo, etc). Looks like a check in the JS is failing: apiclient.js:1 Uncaught Error: File must be an image. at ApiClient.uploadItemImage (apiclient.js:1:56394) at HTMLFormElement.onSubmit (imageuploader.js:1:2659) Pinpointing this to `apiclient.js` on line : if ("image/png" !== file.type && "image/jpeg" !== file.type && "image/jpeg" !== file.type) throw new Error("File must be an image."); Image/jpeg also exists twice in this line? Did someone maybe accidentally remove image/webp? If I can be so bold, I'd suggest rewriting this to an "includes" method: if (["image/jpeg", "image/jpg", "image/webp"].includes(file.type) == false) throw new Error("File must be an image."); That keeps issues like this from happening because it's much more readable.
  5. Q-Droid

    Cannot connect when run through HaProxy

    Your capture is showing port 443 as the destination on your Emby host when it should be 8096. Port 443 should be the public endpoint, not the internal one. Internet <--> :443 (haproxy) <--> :8096 (emby)
  6. Since its working fine for your user, I would try to log in as your user on her devices to see if the same issues persist. If not than it is some user setting you have set for her user that's causing the issue.
  7. heffeque

    New Windows & Xbox Version: 2.234.0.0

    Same. Trailers not working on latest version.
  8. alex77777

    Issue with Emby Videos Not Playing on Apple TV

    Ive had no issues with my Apple TV Emby. You'll have to provide more detail. What Emby App version are you using? What Emby Server version are you using? What version of TVos are you using? Have you updated any of these recently? Does the app not connect to server at all or does it just not play the content? Any Error messages such as "No compatible streams" or something like that?
  9. SsSeS

    New Windows & Xbox Version: 2.234.0.0

    Installed on Windows 11 Emby Windows Version 2.234.2.0 will not play movie trailers. The window flashes like it is about to play the trailer and then stops. Emby UWP Version 2.234.0.0 plays trailers without an issue.
  10. Today
  11. ebr

    Trailers no longer working

    Ok, yeah. That is one of the big issues with the native TV platforms other than the standards like Android TV. It can take ages for the TV provider to approve updates and they tend to cut off updates after just a few years. This is all out of our control, unfortunately but is another advantage to external devices.
  12. Kindly asking for an update on the situation here. My Samsung Q70R is also stuck on 2.2.5 which is over two months old now and still unable to play Youtube trailers which has stopped working half a year ago. Can we kindly ask for an ETA as to when an update can be rolled out?
  13. Any update here? I'm also stuck on 2.2.5 and contrary to the changelog information on your website, there is no newer version of the app available for me.
  14. vicviper

    Trailers no longer working

    Emby for Samsung 2.2.5 (that is the most recent version available in apps for me). Already tried uninstalling/re-installing the app. No dice. Same issue reported here: Looks like we are stuck on 2.2.5 with these TVs and the Youtube issue never got fixed.
  15. NEOeclipse

    New Statistics plugin

    well, good news... so i restarted emby to let it do the update on the statistics plugin and then i ran all 3 scheduled tasks for statistics and everything went good and finished. i also checked the user statistics and everything loads up and is upto date. So i have no freaking clue what went wrong but all is good now. thanks for the replies and the help @hackthis02and this is now on the latest 3.4.2.0 build of statistics
  16. hackthis02

    New Statistics plugin

    Okay update do the newest and do the debug log thing.
  17. GrimReaper

    Transcoding offloading

    Not currently. You can lend your support here:
  18. cyruspy

    Transcoding offloading

    Is it possible to offload the transcoding (mostly batch conversion) to a machine that's not the Emby server?. I have a modest NAS serving content via Emby as a container and a second more capable and power hungry machine that can do better for transcoding but don't want to have 24x7 online. Is there any support to add that machine as a transcoding worker to receive the original media, convert it and send it back to emby?
  19. cyruspy

    Amarok as music client

    Let's assume I'm doing it (mostly clueless so far), how do I submit the logo inclusion request when it's done?
  20. Hi, we are looking into this. Thanks.
  21. Hi, you can ungroup them manually by clicking on them and then clicking split versions apart at the bottom of the detail screen. Or you can disable grouping altogether using the options for each library.
  22. NEOeclipse

    New Statistics plugin

    well the statistics scan is at 88% currently and has been there for a good while now, but it aint failing so ill just keep waiting it out. In other news though i went to the statistics page and am able to see user statistics once again. but now its just a matter of figuring out why it started failing after your update to 3.3.2.0... geez i just realized its been having issues for over a year now, i forgot we were in 2026 and this update was February 10 of 2025..... ok edit... just finished the statistics scheduled task without fail. 3.3.2.0 10/02/2025 Some code optimizations Removed specials from User-based show progress equations
  23. fabien_m2002

    Scan Library Files: enable for all versions!

    Hello Luke, here:
  24. burrsg101

    Cannot connect when run through HaProxy

    Hello all, I'm hoping someone with experience with HaProxy can maybe help figure out what I'm missing. I have been running Emby with direct port forwarding fine for some time, but I decided I would like to put it behind a reverse proxy for a few different reasons. I am running HaProxy in Pfsense to achieve this. I cannot however get it to complete the connection. My setup is as follows: SSL offloading in HaProxy frontend Backend runs to my Linux box IP that has Emby on the normal http port 8096 I have a cert dedicated to my domain (not wild card) that I run emby in. I've verified this is being pull correctly on the front end. My issue starts on the backend. The connection requests to Emby are being rejected. I have verified the requests are making it to the Linux box with Emby running on it using wireshark. See the capture here: This is where I get lost as I cannot figure out why these are getting rejected. These are my network settings in Emby server: Haproxy just shows a connection failure. If I try to run a health check in Haproxy, it too tell me there is a layer4 refusal and presumes the server to be down. The following is the message I get in the logs in HaProxy: Also I have an unrelated web server (standard Apache server) running in a different VM on the same VLAN as my emby server that has connection perfectly fine with HAproxy, and no issues. Any help is much appreciated.
  25. Happy2Play

    Not pulling new shows through

    The guide in this Linux section may help.
  26. Luke

    Scan Library Files: enable for all versions!

    Hi, where did you click scan library files?
  27. NEOeclipse

    New Statistics plugin

    ok, so i did that and restarted yadda yadda, i am running the scheduled task of calculating all statistics currently, its at 12% so im just gonna watch and wait to see if it completes or fails. now how do i stop emby from updating the plugin automatically because it already gave me the notification that it was updated and i need to restart emby again. OBV im not restarting but yeah... and i noticed the version 3.3.2.0 was when you removed the specials or something like that. but yeah as im typing it is now at 20% already
  1. Load more activity
×
×
  • Create New...