Jump to content

All Activity

This stream auto-updates

  1. Past hour
  2. Luke

    Emby Samsung Plugin not Loading.

    @SamES
  3. Now we're in the game. Plugin is visible and works. 2026-07-07 20:12:38.318 Info App: [TVShowStatus] DeployWebScript() called. 2026-07-07 20:12:38.320 Info App: [TVShowStatus] Deployed web script to C:\Users\blingbling\AppData\Roaming\Emby-Server\system\dashboard-ui\tmdb-status-plugin.js BUT: I had to manually add the script to index.html: <script src="tmdb-status-plugin.js" defer></script> Before, it was not visible.
  4. @sh0rty Please test. v2.5.3.0 EmbyTVShowStatus.dll
  5. Workaround found I found a reliable workaround while waiting for a fix. My setup is: Emby Server 4.9.5.0 running on a Freebox Player Pop (Android) Kodi as the media player EmbyCon to access my Emby library Instead of using the Emby Trakt plugin, I installed the Trakt addon for Kodi and authenticated it with my Trakt account. Since Kodi is the actual player used for playback, the Trakt addon correctly scrobbles movies and TV episodes, even when they are played from EmbyCon. The Emby Trakt plugin still remains stuck on "Enter PIN", but using the Kodi Trakt addon is a working workaround until the plugin issue is resolved. Hopefully this helps other users experiencing the same problem.
  6. Today
  7. MediaEmby1968

    There is a bug in version 2.3.8 with .ass files

    Thanks, I see that it happens to other people too.
  8. MediaEmby1968

    Emby Premiere

    En la configuracion de tu Servidor Emby, hay un apartado llamado Emby Premiere entra ahi e introduce la clave Emby Premiere que has tenido que recibir por correo electronico.
  9. FrostByte

    There is a bug in version 2.3.8 with .ass files

    Same here
  10. MediaEmby1968

    There is a bug in version 2.3.8 with .ass files

    Hi @LukeI have installed this version and it does nothing. Started Emby, once installed, the Emby logo appears and it stays there and does nothing else.
  11. BruceCPippin

    folders automatically created by EMBY?

    I have 2 shared folders on my Synology NAS that where not manually created. Due to timing, I have good reason to think that EMBY created them automatically. - photos - video Can these empty folders by deleted? Is there a reference published that can confirm they were created by EMBY?
  12. DellHome

    .NET

  13. When I enter the PIN generated by the Emby Trakt plugin on https://trakt.tv/activate, Trakt returns: "The code XXXXXXXX is invalid. Your device should be displaying an 8 character code." The PIN is generated directly by the Emby Trakt plugin and entered immediately after generation.
  14. DellHome

    .NET

    trying uninstall and I get this message, any idea?
  15. Janiswa

    Ipad app Cant Open!

    I hope the issue gets resolved soon. It can be really frustrating when an app suddenly stops opening after an update, especially on older iPads. Keeping compatibility with legacy devices is always a challenge, but clear communication from the developers makes a big difference. On Android, I've had a smoother experience with streaming apps like Dixmaxapks.es, which focus on simple navigation and reliable performance across a wide range of devices. Hopefully the next Emby update fixes the remaining iOS issues for everyone.
  16. Could you please upload another log? My apologies for the extra request. I’m currently implementing the Android badge and icon based on guidance from the Emby team, and I will be sure to address that fix as well.
  17. softworkz

    .NET

    HAL is something very fundamental (Hardware Abstraction Layer). Beyond that, I cannot say much more - PC support is not really our expertise, but maybe some community member has an idea what it could be. Thanks
  18. DellHome

    .NET

    I've open the Windows Event log and there are several ERRORS they say HAL I've attached the screen shot
  19. Nope, exact same error as before.
  20. Super1

    Lg tv web os emby ai upscaling

    Ok so i found out that for dolby atmos truehd to work you need a streaming device connected to tv so naturally i bought nvidia shiled pro and with it all my problems of ai upscaling and subtitles should go away. I just wanted to check with you if i got this correct. To play on OLED65G51LW via nvidia shiled pro that has emby app i should configure in emby app settings and turn on Match video resolution This forces the device to output the 1080p signal over the HDMI cable, allowing the TV's AI processor to perform the upscaling. And if this wont work i will report a media playback issue.
  21. @sh0rtyDid the new update work?
  22. Hello GreatSandstone, ** This is an auto reply ** Please wait for someone from staff support or our members to reply to you. It's recommended to provide more info, as it explain in this thread: Thank you. Emby Team
  23. Summary When the Emby Web client requests transcoding with TranscodingMaxAudioChannels=2 (stereo), Emby ignores this constraint if the source audio codec already matches the target codec (AAC→AAC). Instead of downmixing the 5.1 source to stereo, Emby uses -c:a:0 copy in the FFmpeg command, passing the full 5.1 audio stream through to the client unchanged. This results in clients receiving 5.1 channel audio when they requested stereo, which causes audio/video desync on browsers (Firefox/macOS confirmed) with limited bandwidth connections. Environment Emby Server: 4.9.5.0 Client: Emby Web 4.9.5.0, Firefox 149 on macOS 10.15 Transcoding: Hardware (NVDEC/NVENC, GTX 1060) Source file: MKV container, HEVC video, AAC 5.1 audio Steps to Reproduce Have a media file with AAC 5.1 audio (6 channels). Play it from the Emby Web client (browser) on a connection slow enough to require transcoding. Transcoding is triggered here due to ContainerBitrateExceedsLimit. The client sends the HLS manifest request with AudioCodec=aac&AudioBitrate=320000&TranscodingMaxAudioChannels=2. Observe that the FFmpeg transcoding command generated by Emby uses -c:a:0 copy for the audio stream, despite the TranscodingMaxAudioChannels=2 constraint. Result: The output HLS segments contain 5.1 AAC audio. The browser receives and attempts to play 6-channel audio when it requested 2 channels, causing desync. Expected Behaviour When TranscodingMaxAudioChannels=2 is included in the client request, and the source audio has more than 2 channels, Emby should transcode the audio to stereo (e.g. -c:a:0 aac -ac 2) regardless of whether the source codec matches the target codec. Actual Behaviour Emby generates the following FFmpeg command (relevant portion): -c:a:0 copy -metadata:s:a:0 language=eng -disposition:a:0 default The source stream is AAC 5.1 at 447 Kbps. The client requested AAC at 320 Kbps, max 2 channels. Because the codec (AAC) matches, Emby skips audio transcoding entirely, ignoring both the channel limit and the bitrate limit. There is also a related issue: Emby's media detection reports the audio stream bitrate as 320,000 bps, but ffprobe reads the actual bitrate from the file metadata as 447,245 bps. Because Emby believes the source bitrate equals the requested budget (320,000 = 320,000), it concludes no transcoding is needed. This may be contributing to the decision to stream-copy. From the FFmpeg log, the source stream is detected as: Stream #0:1(eng): Audio: aac (LC), 48000 Hz, 5.1, fltp, Start-Time 0.020s (default) BPS: 447245 But Emby's own media info JSON for the same stream reports: "Codec": "aac", "BitRate": 320000, "Channels": 6 Disclaimer: Claude was used to help identify the issue and sort through the logs. It has written the summary with a great deal of authority, although it is definitely possible there is a configuration oversight we are both missing. ffmpeg-transcode-4adf667c-6450-4842-aa79-63d6aeca9f87_1.txt embyserver-63918795788.txt
  24. Hi, what I am looking to do is be able to view all the programs in the guide (whatever time range is available) to see just programs that are "Premiere" or "New" for example. I currently find myself using other sites to see what shows are premiering (date/time) then go back into emby go to that date/time in the guide and setup the recording for that program. It would be great if I could just go into the LiveTV component on the web and see all the programs that are showing as premiere that are in the current future guide data. I was thinking if there was just another tab like the "Recordings" or "Series" ones for Premiere? (I will leave that to the Dev Team on where it would be best of course).\ Thanks, Erik
  25. softworkz

    .NET

    Still do what I said: Check Windows Event Log and Antivirus - this is not normal what you've seen. No.
  26. ebr

    Roku app not always ending live TV streams?

    Hi. There is no "stop" on the remote but we'll need to look at an example as requested by Luke. Thanks.
  27. DellHome

    .NET

    This morning I woke up and didn't have the " Need to install error" when I opened my PC, so I at least thats gone. I'm wondering when downloading the server, should i be selecting "beta Channel"?
  1. Load more activity
×
×
  • Create New...