Jump to content

Leaderboard

  1. Luke

    Luke

    Administrators


    • Points

      20

    • Posts

      268628


  2. Happy2Play

    Happy2Play

    Top Contributor


    • Points

      13

    • Posts

      42986


  3. FrostByte

    FrostByte

    Top Contributor


    • Points

      10

    • Posts

      11039


  4. softworkz

    softworkz

    Emby Dev's


    • Points

      9

    • Posts

      10506


Popular Content

Showing content with the highest reputation on 10/13/22 in Posts

  1. We found the issue. We'll be submitting an update to Apple to resolve it. Thanks guys.
    3 points
  2. 2 points
  3. nevermind I´ve deleted and re-added the content and now all chapter images have been extructed So i´ve just restarted the extraction for my whole collection and tell you tomorrow about the result
    2 points
  4. I'm leaving on a business travel and will get back next wed. Will try your propsal then. Thanks !
    2 points
  5. I would suggest checking out the blog:
    2 points
  6. Yes, i agree with this. As ATV direct access never worked on 8.2.3 for me anyway I had no reason to not update. In fact some streaming apps such as apple tv+ no long have that micro stutter when viewing 4k DV/atmos content on 9.1 as 8.2.3 did.
    2 points
  7. FYI - the fix for OP's issue (AAC 7.1 causing playback errors) was resolved back in August in 2.0.80g @Gutsberzerk you can either wait until the stable is updated with current fixes til 2.0.83, or side-load the beta from here: ...or continue to run the 'not ready for prime time yet' standard Android app that you just recently installed
    2 points
  8. Only issue with USB sideloads apps is the expiration date. Samsung's policy is that the only official way to distribute apps is through the Samsung store and that usb installs should be used for testing purposes only. Because of this policy Samsung has mandated that usb distributed apps must expire within 30 days of compiling. To help with testing you will be remined to update to the latest beta release as the app expires to ensure you are using the latest version when reporting issues.
    2 points
  9. Hi is there a possibility to get a Parental Guidance Cleaner Plugin like the Genre Cleaner Plugin ? For US People probably has no sense but for people like me in Spain we end up having Movies with: ES-APTA, ES/A, ES-G, G ES-7, ES/7, ES-7, PG Etc. Now I've more than 60 different Parental Guide Codes for just 6 options (G, PG, PG-13, NC-17, R, X) Would be very useful to have somethig similar as Genre Cleaner to consolidate all Parental Guides for movies and TV Shows, otherwise it's impossible to filter by that. Thanks, and appologies if this is not the right forum section for this request.
    1 point
  10. Thank you Sir. I really, REALLY, appreciate it. Looking forward to the update.
    1 point
  11. I am still having serious stuttering issues on ATV OS16. iOS devices play fine. MacOS plays fine. Any news on this?
    1 point
  12. It can’t be the files as they play fine on everything else. I can only replicate the issue specifically on the play store app. Its all connected through Ethernet cable, the server, shield, everything as I don’t really like wireless. Ahh there we go so it really was the app then. Thanks for this.
    1 point
  13. It doesn't change the On Now size.
    1 point
  14. Agreed and this has been stated that the plugin will be available until 4.8.1 becomes a stable release.
    1 point
  15. I think this would be a good channel plugin initially, however, it’s very tricky as there are only about a million chinese cameras out there and not all are RSTP, ONVIF but it would essentially come in as MJPEG and update frame by frame for live view. i like this idea. So might give it a shot to implement once i get back from here
    1 point
  16. I should be able to get a good look next week, and if I can't figure it out, I'll switch it to Kodi (Emby for Kodi). I'll see if I can get some video of it, though I doubt it will help any Thanks guys
    1 point
  17. I thought for DTS-HD, it would at least extract the DTS core and deliver that via ARC. I know my Samsung does this. Maybe LG is not as sophisticated.
    1 point
  18. Looking at the screen grabs - I presume this is going via HDMI to an AVR ? Does the AVR support True-HD/Atmos / DTS-HD etc ? If yes, then using any of the built in TV Emby Clients (Samsung, LG etc) is going to mean you lose the ability to process HD Audio directly on your AVR because the Apps (any App, not just emby) cannot pass HD Audio via ARC, even eARC cannot do this as it's an App limitation, not a eARC technology limitation (which can pass HD Audio, but only using external devices - ie a UHD Player). If the NUC processed the HDR Video (10bit), then you could have used this to pass the HD-Audio to the AVR .. So With what looks to be a high end AVR/Speaker setup - I would suggest using a Shield Pro 2019 - and then all your issues should disappear - as it will just passthrough both the Video from the Shield > AVR > TV and Audio (HD) directly from Shield > AVR - no ARC is involved - and directly play both the Video and Audio to maximum fidelity with no transcoding.
    1 point
  19. Are you still seeing issues with the drive filling up? Let's take a different approach on this. I'm not sure how many files you are having issues with, but the sample in your earlier logs (The Outfit) is about 80Mbps, which is right on the limit of Samsungs specifications. That is not in itself a major issue, but something to be aware of. You are trying to play the ATMOS track, which is not supported on the TV. This means that the server must convert the audio, which also changes the way it is delivered. It adds more demands on your server, and the high bitrate file is not helping this. Rather than the ATMOS track, can you please try selecting the AC3 audio track from the details screen before you start playback. This should result in a format that allows DirectPlay and eliminates the need for any conversion. Please test for a while and see whether it resolves your issues. Check using Stats for Nerds during playback and confirm that it is DirectPlay Please let me know how this goes.
    1 point
  20. I would look at the release notes really quick, but for me they haven't fixed anything that affects me. There hasn't been anything new either that I even use. Unless you're having some sort of hardware issue, I would say it probably would make no difference in your life other than ATV would no longer be able to have direct access. SE9 does seem to run smooth without issues though.
    1 point
  21. @hackthis02 Thanks for the quick fix with the episode count. The 3.0.4 is working great here, even the scroll issue I reported seems to have worked it's self out. Not sure if it's a core update/plugin or maybe browser but all good.
    1 point
  22. By the way, do any of you have any cool SQL queries? Here are mine: - Count unique users per day SELECT date(DateCreated) AS Date, COUNT(DISTINCT UserId) as Users FROM PlaybackActivity WHERE DateCreated between date('now', 'start of day','-6 months') and date('now', 'start of day', '+1 day') GROUP BY date(DateCreated) ORDER BY date(DateCreated) ASC - Count unique users per month SELECT DISTINCT strftime('%Y-%m', DateCreated) AS Date, COUNT(DISTINCT UserId) as Users FROM PlaybackActivity WHERE DateCreated between date('now', 'start of day','-24 months') and date('now', 'start of day', '+1 day') GROUP BY Date ORDER BY Date ASC If you want to display a graph like this you must set these options :
    1 point
  23. What do you mean? I see it in the catalog in top plugins row and in reporting row.
    1 point
  24. Jut wanted to confirm that updating to 3.0.3.11 solved the issue. Thanks !
    1 point
  25. thanks a lot Emby is the best app ! So good !
    1 point
  26. Ohh in that case, I'll wait. That's a silly policy. Now that I at least know an official update is coming, that's good enough for me.
    1 point
  27. The release in the pinned post is the latest beta which will always be ahead of the store. More so lately as Luke has made several releases recently. You can always load it using usb if you wish, or just wait if you have access to releases in the store.
    1 point
  28. Ohhh well that would explain it. When I saw that the latest was from 4/25/2022 and that the pinned post shows 1.4.2, I thought something was up that was preventing mine from updating. Good to know. It took hours for that initial Skip Intro task to run and I was so excited to try it just to see it not there lol. I will keep an eye out for the update. Thanks for the quick response, Luke.
    1 point
  29. Hi, yes that is the latest version in the store. We'll be submitting a new update to Samsung any day now and then we just have to wait through their approval process. Thanks.
    1 point
  30. Also, it seems people weren't getting the newest version because 3.0.3.11 was sorted in between 3.0.3.1 and 3.0.3.2. Making version 3.0.3.9 the 'newest' version. @Luke Might want to have someone check that.
    1 point
  31. There are three users on this system that I am primarily testing on. database userids User id 1 no ConnectID does not work User id 2 has ConnectID works User id 5 no ConnectID works
    1 point
  32. Thanks Luke, I disabled the intro detection, image downloading and markers and it finished scanning overnight. It appears all season folders have been restored. Thanks for the help.
    1 point
  33. That is odd but I am guessing this would have been an episode that was technically unidentified. But glad you were able to figure it out.
    1 point
  34. @tmedia we've resolved the back button problem and will be submitting an update to apple to resolve it. Thanks.
    1 point
  35. Hi just checking, any plans to get this done ? Thanks
    1 point
  36. The 4.8 release will have the WMC-like preview I've been wanting to add, so that when you setup the recording you can get an idea of what items will match your keyword:
    1 point
  37. Sort Title covers Star Wars though depending on the naming scheme. But yes alternate sort order is needed preferably a drag and drop order.
    1 point
  38. Restart your server to trigger update check or wait as the task runs every 24 hours. Or you can manually run the task from the API. //Check for plugin updates// curl -X POST "http://localhost:8096/emby/ScheduledTasks/Running/c27fda37dfb6e39be141191aaa1c3060?api_key={yourapikey}" -d ""
    1 point
  39. Is there are any ETA ? I saw your comment in most topic’s.
    1 point
  40. Hi, yes we are planning on adding more options to the video player in future updates to the Emby Apple TV app. Thanks.
    1 point
  41. Guys, thanks for the responses. I'm traveling for work over the next 10 days so will report back as soon as I can. Thanks for your help!
    1 point
  42. The wife and I were very impressed with the new Marvel short movie Wolf by Night. Better done than some of the more recent ones shown at the theater I thought. I read some of the backstory of the monster from the comics too which sort of ties it in with characters from the MCU.
    1 point
  43. Installation link for Nvidia GPU on docker https://docs.nvidia.com/datacenter/cloud-native/container-toolkit/install-guide.html I used this and the docker-compose above by karlshea on ubuntu 22.04.1 successfully
    1 point
  44. I added avg into duration per season to the summary page in the plugin. 1.3.0.6
    1 point
  45. I added season and episode info to the results page https://themeservice.azurewebsites.net/Home/Search
    1 point
  46. Hi, yes we're still looking into this. Thanks.
    1 point
  47. Hi, have you compared your nginx configuration to this?
    1 point
×
×
  • Create New...