Jump to content

All Activity

This stream auto-updates

  1. Past hour
  2. Please create a new thread with specific details (screen shot). Thanks.
  3. There is now a setting that the admin can use to take care of that.
  4. ebr

    Missing Subtitle Delay Option

    This is expected behavior. An internal subtitle that is not in sync should be extremely rare.
  5. Hi, there's already an open request for this or something functionally equivalent. Please join in and contribute to the existing discussion at:
  6. ebr

    Ray by OpenSubtitles.com

    Open Subtitles
  7. Hi, there's already an open request for this or something functionally equivalent. Please join in and contribute to the existing discussion at:
  8. @ CBers, where would be the proper place to report the grey letterboxing on Sony TVs for the universal Android version?
  9. Today
  10. JustEddy

    Unable to get Trakt (re)connected

    Just following up to let you know I'm still hoping for an update that gets Trakt connectivity working again.
  11. This is a Windows Powershell script to update all episodes of a series to match the episode's original air date pulled from Emby's database. You need to create an API code to connect to your Emby server installation. It will create a .json file on first run to save your server settings. The script will ask for your server's IP and API code, Emby's file path, and the Windows file path for the same content. After that, you type in the name of the series, and you will have the option to do a preview scan or a live run. After the preview scan, you can also do the live run. I've run it on several of my shows, and it appears to be working rather well. Use with caution, of course. This is my first-ever PowerShell script. Example of the .json file it creates: { "EmbyPathRoot": "/mnt/TV/", "EmbyUrl": "http://###.###.###.###:8096/", "WindowsPathRoot": "\\\\Tower\\TV\\", "ApiKey": "xxxxxxxxxxxxxxxxxxxxxxxxxxx" } /mnt/TV/ is the Emby path to the TV files, and \\Tower\TV\ is the Windows path. EmbyDateUpdater.zip
  12. A big 100+ page thread here, which discusses the differences between the Emby for Android TV (ATV) app and the Universal Android (Standard) app. It's probably about 50/50 as to which app people prefer.
  13. FYI, Emby for Android on Sony TVs has grey letterboxes during playback. Emby for Android TV has proper black letterboxes. Emby for Android has some nice UI features like viewing actors while a show is playing, but the for ATV version will pause playback when you try to view actors. There are some other UI differences as well. I'd prefer to use the standard Android version, but since I have Sony TVs and don't want grey letterboxes, I'll be using the for ATV version.
  14. geowill76

    Genres For TV Episodes

    Hi I have tried both TVDB and MovieDB as Episode Metadata Downloaders and neither pulling in genre info. Have confirmed that they both have genre info related to TV episodes. As a test, I deleted a genre in one of my old episodes, that already had complete genre information, and asked Emmy to refresh the metadata for that episode, hoping it will pull in the genre I deleted. Once refresh was completed, I checked out the episode and it never pulled in the genre I deleted. System stopped pulling in genres for Dutton Ranch, Marshals, Your Friends and Neighbours, For All Mankind, Legend of Vox Machina, to name a few.
  15. nypaulie

    Fresh install to Linux Mint 21.3

    I’ve added a “Music” directory which plays my extensive mp3 classical music files through my great speaker setup. Sweet!
  16. MarvinB

    [BETA] Ear Wax - NOW AVAILABLE - Testers Wanted

    That behavior is possible. “Alexa, stop/pause/resume” are Alexa-level media commands, not necessarily Ear Wax skill commands. Alexa decides which active speaker or media session those commands apply to, and in multi-Echo setups it may control a different Echo than expected. For clean Ear Wax testing, please use the full skill form: Alexa, ask Ear Wax to pause Alexa, ask Ear Wax to resume Alexa, ask Ear Wax to stop Bare commands may still work, especially “next,” but they are routed by Alexa’s media-control layer before Ear Wax gets involved. If playback behaves strangely after a bare command, retest the same action using the full “ask Ear Wax” command so we know the skill handled it directly.
  17. yocker

    Plugin: EmbyIcons release.

    Nice to hear it's working, enjoy!
  18. Eidolf

    Music stops playing after 2 songs

    I followed this topic because I have the same issue. Since this is going a while I had shortly the oportunity to use my phone in an car with Android Auto (Connected via USB). When I start the FLAC Albums from the car head unit it will play the album completely fine, if I start the same album direct from my phone 2 songs and thats it. I don`t know if this helps for the case but like to share the knowledge.
  19. I am looking to display an image inline on a plugin config page. Currently targeting 4.9.1.90 and the GenericEditFrameWork as shown off in the SDK demo Ideally i would like to place an image (a movie poster image to be exact) in the the nested list with buttons (perhaps instead of the stock icon?), but failing that i can settle for just any method of displaying a poster anywhere. Is this possible without reverting to http/js config pages? (please bear in mind i dont fully understand the terminology i am using so i might be making mistakes, hopefully you get my drift) Thank you
  20. Ik heb weer een bestand dat niet afspeeld in Emby app op de lg tv, tot 2x geprobeerd heel vervelend want op de Android app speelt het wel meteen af. Het gebeurt de laatste tijd steeds vaker
  21. Asdepique777

    Plugin: EmbyIcons release.

    Looks like it works like a charm ! I've tested Posters only as I don't use overlays on thumbs and banners. Cheers @yocker
  22. Asdepique777

    Plugin: EmbyIcons release.

    Thank you so much @yocker, you are the best !! And please enjoy your summer break, have a nice cold one for me
  23. For Apple TV specifically, though, the mpv route has a few trade-offs that a native HLS + fMP4 (stream-copy) path avoids: It's a third-party engine. Bundling and maintaining mpv instead of the platform's own AVFoundation is a long-term cost, and it tends to lag behind OS changes. It breaks some native integrations. The clearest one for me is audio: routing sound to an AirPlay 2 device such as a HomePod doesn't behave the same as with the system player — with the native pipeline that just works (multichannel included); with a custom renderer it's often limited or lost. It tone-maps rather than passes through. This is the big one. As far as I can tell, the mpv path does its own tone-mapping and then outputs an HDR signal, which makes the TV switch into HDR. It's better than re-encoding on the server, but it's still a tone-map: the TV never receives the original Dolby Vision bitstream, so its own DV engine (with the dynamic, per-scene metadata) never gets to do its job. To my eyes it simply doesn't look identical to native DV passthrough. That last point is why fMP4 remux matters. With HLS in an fMP4 container, the original HEVC/Dolby Vision stream can be stream-copied (no re-encode, no tone-map) and handed straight to AVPlayer, so tvOS does true native HDR/Dolby Vision + Match Content. I've got exactly this running on an Apple TV 4K now — DV Profile 8.1 remuxed losslessly, the TV switching into native Dolby Vision — so it's not theoretical. None of this is mpv-vs-fMP4; ideally both exist. But for Apple TV users chasing reference-quality HDR, native remux is the one that looks right. +1 to finally adding it.
  24. And Thorium to rule them all.
  25. I’ve identified a persistent race condition in the tuner handshake process. In environments where tuners require a specific negotiation window, Emby’s current aggressive, automated retry logic creates contention, often resulting in avoidable handshake failures. I am proposing that the tuner retry logic be made configurable—specifically, allowing users to toggle these retries on/off or adjust the interval. This change would significantly improve stability for those of us using specific hardware or custom proxy setups without impacting the default behavior for the rest of the community. Is this something the development team would consider implementing? I have logs available to demonstrate the handshake conflict if needed.
      • 1
      • Like
  26. Edge is the superior choice for watching any video as it supports all the formats and therefor doesn't require any transcoding. Firefox is slowly catching up. Chrome does support a good amount of formats but not as many as Edge. Pure browsing is a whole other discussion.
  27. Yesterday
  28. Auto doesn't work anyway and defaults to a very low quality (can't remember the actual quality). Auto should really be called default and not auto.
  1. Load more activity
×
×
  • Create New...