All Activity
- Past hour
-
Tityroma joined the community
-
uestr5590580 joined the community
-
eduhernandez joined the community
-
TLay76 joined the community
-
kanikita1@gmail.com joined the community
-
aulery2013 joined the community
-
jose12alana joined the community
-
STAGSONE joined the community
-
Juliod joined the community
-
rick@cue42.com joined the community
- Today
-
xsnipuhx started following Plugin: Tracearr SSE - real-time playback, session, and library events
-
Plugin: Tracearr SSE - real-time playback, session, and library events
xsnipuhx replied to Gallapagos's topic in Plugins
Hi @Gallapagos, I just added your plugin to my container and am running it along side tracearr. Library is decent size and can sometimes have up to 10 concurrent streams. Will report back if anything breaks. -
Plugin: EmbyCredits, detect end credits and add auto skip.
yocker replied to yocker's topic in Plugins
@BaenwortI have added some improvements, they are in the latest beta in the catalog. Biggest improvement is being able to run multiple instances of local Tesseract detections. -
Completed Sort and filter of the content of collections
malghana replied to harold's topic in Feature Requests
Hi Luke, thanks for your reply I haven't searched for this yet but would you be kind to also include or let me know if it's coming up, default sort per Library? It's really annoying when i open a new browser or TV app and find default sort back to name instead of my preferred Date Added Thanks!!! -
I am not allowed to watch movies or series in 4k UHD
SamES replied to robertmontblack's topic in LG Smart TV
I don't think that's the actual issue. Can you please try one file that you have issues on, but select the AC3 audio track from the details page before you start playback and let me know if it is any better? Please check Stats for Nerds like your earlier tests and confirm that the container, video and audio are now all showing Direct Play -
32gb is still plenty of ram, so I would take the more powerful machine.
-
alte Bilder (fanart, poster etc) aus kodi export löschen
Luke replied to familiezufall's topic in German
Hi, please let us know if this answer helps. Thanks. -
Completed Sort and filter of the content of collections
Luke replied to harold's topic in Feature Requests
Hi, yes we could look at expanding there. Thanks. -
Watched states don't sync reliably with server for Downloaded media
Luke replied to Modify3453's topic in Android
Hi, this should be improved in Emby for Android 3.5.49+. Thanks. -
I have installed the new release and it has fixed the sub title issue where the sub title displayed in the top let corner of my LG TV.
-
Have you sobered up now?
-
Update is now available in Australia too, appears to have fixed the issue. Yay!
- Yesterday
-
I am not allowed to watch movies or series in 4k UHD
robertmontblack replied to robertmontblack's topic in LG Smart TV
Esto me dice la IA que está ocurriendo en mi smart tv LG C5 con sistema webos : " Para películas o series en 4K Dolby Vision dentro de contenedores MKV, la respuesta corta es que la app nativa de webOS presenta limitaciones técnicas insalvables para el avance, retroceso y guardado de tiempo. El reproductor HTML5 interno que LG integra en webOS carece de soporte completo para la tabla de marcas de tiempo (seeking) cuando procesa el perfil de Dolby Vision sobre Direct Play en MKV. La aplicación de Emby no puede cambiar el motor de reproducción del televisor, lo que provoca que se congele la línea de tiempo". Tal vez por eso falla en el playback porque uso la misma cuenta en otro dispositivo como el firestick 4k max segunda generación y no tengo problemas para ver películas en alta resolución y me deja retroceder y adelantar una película. Además me deja en el punto del tiempo donde dejé dicha película (no me hace iniciar la película nuevamente) -
I am not allowed to watch movies or series in 4k UHD
SamES replied to robertmontblack's topic in LG Smart TV
The issue here is not the 4K, it's the audio transcoding that's causing the issue on 2025 models. This is the same issue as here: As per the earlier suggestions, for now your best option is to avoid any audio tracks that don't direct play (ie: no DTS, TrueHD, mp3, flac). Best to stick to AC3 or EAC3 (Dolby Digital/Dolby Digital+). Generally most files have one of these as a compatibility track, so select that and playback should be fine. If it doesn't have one, you can manually add one yourself. We continue to work on a resolution for this, but I believe it is an LG issue and not directly an Emby problem. -
When did you expect to see it but did not?
-
26.0.16 Fix focus regressions with view transitions Improve loading dialog
-
Emby Web App Update: Version 26.0.16 The Emby Web app has been updated to version 26.0.16 Go and try out: https://app.emby.media/ Changes 26.0.16 Fix focus regressions with view transitions
-
Is your startup any faster with 3.5.50?
-
Gracias! this is 100% the setting I was looking for! Thank you!
-
justinrh started following Which NUC to use for my server
-
This is fixed for the next release. Thanks
-
[Tutorial] Optimizing Emby (Native): Transcode and Cache in RAM (Tmpfs) via Entware WD PR4100
Luke replied to WDPR4100's topic in Western Digital
Thanks for sharing. -
WDPR4100 started following [Tutorial] Optimizing Emby (Native): Transcode and Cache in RAM (Tmpfs) via Entware WD PR4100
-
[Tutorial] Optimizing Emby (Native): Transcode and Cache in RAM (Tmpfs) via Entware WD PR4100
WDPR4100 posted a topic in Western Digital
This tutorial explains how to move Emby's transcoding and cache directories to a virtual disk in memory (RAM using tmpfs). This provides maximum performance and, most importantly, protects your mechanical hard drives (HDDs) from the heavy and constant write operations generated by video transcoding and thumbnail generation. Prerequisites: A NAS running Entware (tested on WD My Cloud PR4100). Sufficient RAM (Recommended: at least 16GB of RAM so you can comfortably allocate 6GB to the system). Root SSH access. Step 1: Create the Automatic RAM Mounting Script Entware automatically executes scripts located in /opt/etc/init.d/ when the NAS boots up. We will create a script that sets up a 6GB tmpfs RAM space and prepares the necessary directories. Connect to your NAS via SSH as root. Create or overwrite your startup script by running this command block: cat << 'EOF' > /opt/etc/init.d/S99embyram #!/bin/sh RAM_DIR="/mnt/HD/HD_a2/Nas_Prog/embyserver/transcode_ram" CACHE_DIR="$RAM_DIR/cache" case "$1" in start) if [ ! -d "$RAM_DIR" ]; then mkdir -p "$RAM_DIR" fi # Mount RAM with a 6GB allocation mount -t tmpfs -o size=6G tmpfs "$RAM_DIR" if [ ! -d "$CACHE_DIR" ]; then mkdir -p "$CACHE_DIR" fi # Broad permissions to allow native writing without errors chmod -R 777 "$RAM_DIR" echo "Emby RAM (6GB) transcode and cache mounted successfully at $RAM_DIR" ;; stop) umount "$RAM_DIR" echo "Emby RAM transcode unmounted." ;; *) echo "Usage: $0 {start|stop}" exit 1 ;; es: exit 0 EOF (Adjust the path /mnt/HD/HD_a2/Nas_Prog/embyserver/transcode_ram to match your own NAS directory structure if necessary). Step 2: Test and Run the Script Immediately To apply the script right away without rebooting your NAS: Unmount the old point if it already existed: umount /mnt/HD/HD_a2/Nas_Prog/embyserver/transcode_ram Run the startup script: sh /opt/etc/init.d/S99embyram start Verify that the 6GB are active: df -h | grep transcode_ram Step 3: Configure Emby from the Web Interface Now that your RAM space is ready, you need to tell Emby to use it. Log into your Emby admin dashboard as an administrator. For Transcoding: Go to Server > Transcoding (or Paths). In the Transcode path field, enter: /mnt/HD/HD_a2/Nas_Prog/embyserver/transcode_ram Click Save. For Cache: Go to Server > General (under the Advanced section). In the Cache path field, enter: /mnt/HD/HD_a2/Nas_Prog/embyserver/transcode_ram/cache Click Save. Step 4: Restart Emby Restart your Emby service so it applies the new paths. That's it! The setup is fully persistent: every time the NAS reboots, the Entware script will automatically recreate the 6GB RAM space with the correct permissions, and Emby will seamlessly store its cache and transcodes there. entware_20.11.17_PR4100.bin -
Intro detection - it's just never worked for any tv show; I've never seen the button even once. I usually just hit the 10 second advance button a few times, but that can bog things down sometimes. Do you know of a better way to send any data that might be relevant for diagnosing?
-
Hi everyone I have just updated my LG Emby app and the subtitle issue has been resolved
-
Stumped trying to get an API key to work with Powershell for Movies reporting
FatherSaint replied to FatherSaint's topic in Developer API
- 9 replies
-
- 1
-
-
- powershell
- script
-
(and 1 more)
Tagged with:
-
Stumped trying to get an API key to work with Powershell for Movies reporting
FatherSaint replied to FatherSaint's topic in Developer API
- 9 replies
-
- powershell
- script
-
(and 1 more)
Tagged with:
