All Activity
- Past hour
-
Escy joined the community
-
amalcaide joined the community
-
Nephalem89 joined the community
-
wpfnb joined the community
-
大ji吧 joined the community
-
andres20 joined the community
-
Amolyedekar joined the community
-
Tiedeliewiet joined the community
-
biker71 joined the community
-
Caesar80 joined the community
-
-
Bump.
- Today
-
Thank you - GenreCleaner did the job. It couldn't clean all unwanted genres (don't know why). But there were so less at the end, I could do it manually.
-
Belenkiy started following Emby: “Scan media library” hangs tasks stuck running
-
Hi! I’m running Emby Server on Synology (DSM7.3.2 , package, x86_64). I’m trying to fix a long-standing issue: library scans hang and sometimes artwork doesn’t load / UI feels stalled. Environment Device: Synology NAS (DSM 7.3.2-86009 update 1), volume is Btrfs (/volume1) Emby Server: 4.9.3.0, (also tested 10.0.4 and 10.0.5version, issue persists) ProgramData: /var/packages/EmbyServer/var → symlink to /volume1/@appdata/EmbyServer Libraries: TV: /volume1/video/Serials Movies: /volume1/video/Movies Symptoms “Scan media library” hangs Logs stop showing “next step” as if the previous step was successful but the next one did not start: In logs Emby completes some scan steps, then no further “start next step” entries appear for a long time, while server still shows “Scan media library” running. What I already checked / tried File system is fast; find /volume1/video/Serials -type f completes quickly. Permissions: ProgramData cache/metadata folders are owned by emby:emby; emby user can write to them (su emby -c touch ... OK). Removed local NFO files temporarily and disabled NFO metadata reader to avoid broken/empty NFO overriding online metadata. Disabled UPnP mapping in Emby (auto port mapping) to prevent external influence. Questions Any recommended diagnostics to identify where the scan is blocked (e.g. enabling debug for TaskManager / library scanner)? embyserver.txt logs around scan start and the hang point Thanks! embyserver.txt
-
I'm not sure because everytime I see a stutter it seems Emby is trying to interact with something. But I can't be sure. Can't upload any full logs anywhere, because they get absolutely massive, so here's a part where a stutter happened at 15:46. kodi.log
-
carba7479 started following Utilisation excessive de la RAM
-
Bonjour à tous, Depuis quelques jours (peut-être 10 jours), mon serveur EMBY est super lent. Après quelques recherches, j'ai remarqué qu'il utilisait en permanence plus de 10 go de RAM sur mon NAS Synology (RAM totale de 16 go). Je redémarre le serveur et après quelques heures, je suis de nouveau à plus de 10 go de RAM. J'ai donc un synology DS220+, 16 go de RAM. Serveur EMBY version 4.10.0.5. Je ne passe pas par container manager mais directement par synology. Par principe, j'ai relancé hier mon routeur, mon NAS et encore une fois emby mais ça ne change rien. Je n'ai pas spécialement de message d'erreur à publier, mais que ce soit à distance ou en local, ça met beaucoup de temps à afficher l'accueil ou les différentes bibliothèques. Je n'ai pas de tâches spéciales en arrière plan. Je n'ai pas changé de paramètres ces derniers temps. Voilà, avez-vous des idées`? J'ai l'impression que ça a commencé avec la version 4.10.0.4. Merci d'avance. vb (actuellement, j'ai 18mo utilisation pour ffmpeg et 10.6 go de emby server selon le gestionnaire des tâches de mon syno) Je n beta
-
Apple TV Remove From Playlist button not working
alexdchandler replied to alexdchandler's topic in Apple TV
Thank you so much!! -
Emby Theater v3.0.20 (Server v4.9.3.0) Homescreen Horiz. navigation broken
d00zah replied to d00zah's topic in Windows & Xbox
Thanks for narrowing things down @scottproI've tried an uninstall/reinstall & see no behavioral improvement... any update, @Luke? -
I saw that when I was editing the metadata. I wasn't sure why it would be needed. Now I understand. Thanks again!
-
SamES started following Apple TV Remove From Playlist button not working
-
Should be resolved for next update
-
softworkz started following Is March still a viable option to launch Emby for UGOS?
-
Is March still a viable option to launch Emby for UGOS?
softworkz replied to Davey's's topic in General/Windows
I have moved your post because it was completely off-topic. Please don't be afraid of creating new topics when you have a question -
Coxeroni started following Unraid: HW transcoding not working (?)
-
Emby Version 4.9.3.0 - Unraid 7.3.2 CPU is Intel® Xeon® CPU E3-1225 v6 @ 3.30GHz, which was working well with Plex before. I have Premiere lifetime if that is of interest: Recently I started converting some recorded TV episodes to a more "friendly" format, when I realised high CPU usage and very slow progress. Does it mean that HW transcoding is not working? It should state the encoders, shouldn't it? I forwarded /dev/dri in unraid ...and I can also see the device inside the Emby container: When I force transcode a playback, I don't seem to have any kind of HW transcoding indication either: What am I missing here? Edit: Just fired up my Plex container on the same system, and iGPU/QuickSync transcoding works fine there... Edit2: Same on Version 4.10.0.5 beta hardware_detection-63908664531.txt
-
Android player setting to disable brightness adjuster.
GroteGlon replied to gbutton's topic in Feature Requests
On my Samsung Galaxy s24 ultra the max brightness in the app is lower than what my phone is capable of. You can even see it go down in brightness in the first half second of playing where it adjusts to the highest setting allowed by the app. It's making it impossible to watch anything outside. -
Minor AppleTV Bug: Duplicated items in a playlist fail to display more than once on AppleTV
SamES replied to ZanderKeen's topic in Apple TV
Thanks. Resolved for next update -
DVR, check if movie already in library before recording
reneboulard replied to reneboulard's topic in Feature Requests
Visual EPG "Not in Library" Indicators using Nginx and API Scripting This solution uses a small bash script and an Nginx reverse proxy to inject a visual "TO RECORD" tag directly into the Emby web interface for any movie found in the EPG that isn't already in your collection. How it works: Backend Script: Compares your library against the EPG via the Emby API. JSON Output: Saves a list of "missing" movies to a web-accessible folder. Nginx Injection: Automatically inserts a small JavaScript file into the Emby web app using sub_filter. UI Update: The script scans the page and adds a red badge to any matching movie titles. 1. The Automation Script (emby-absent.sh) This script generates the data. Place it in /usr/local/bin/ and ensure jq is installed. Update the EMBY_URL and API_KEY placeholders. #!/bin/bash # Configuration EMBY_URL="http://yourembyip:8096" API_KEY="YOUR_API_KEY_HERE" WEB_PATH="/var/www/report/absent_movies.json" # Function to clean up titles for better matching (removes punctuation/spaces) clean_title() { echo "$1" | tr '[:upper:]' '[:lower:]' | sed 's/[^a-z0-9]//g' } # 1. Generate cleaned list of local movies LOCAL_CLEAN=$(curl -s "$EMBY_URL/emby/Items?IncludeItemTypes=Movie&Recursive=true&api_key=$API_KEY" \ | jq -r '.Items[].Name' | while read -r line; do clean_title "$line"; done | sort | uniq) # 2. Get list of movies currently in the EPG PROGRAMS=$(curl -s "$EMBY_URL/emby/LiveTv/Programs?IsMovie=true&api_key=$API_KEY" | jq -r '.Items[].Name' | sort | uniq) # 3. Compare and output JSON echo "$PROGRAMS" | while read -r title; do TITLE_CLEAN=$(clean_title "$title") if ! echo "$LOCAL_CLEAN" | grep -qxF "$TITLE_CLEAN"; then echo "$title" fi done | jq -R . | jq -s . > "$WEB_PATH" chmod 644 "$WEB_PATH" Set a cron job to run this every 4 hours: 0 */4 * * * /usr/local/bin/emby-absent.sh 2. Nginx Configuration Add these lines to your Emby location / block. This handles the injection and serves the custom files. location / { proxy_pass http://yourembyip:8096; # Disable compression so sub_filter can read the body proxy_set_header Accept-Encoding ""; # Inject the script before the closing body tag sub_filter '</body>' '<script src="/emby-mod.js"></script></body>'; sub_filter_once on; # Standard headers proxy_set_header Host $host; proxy_set_header X-Real-IP $remote_addr; proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; proxy_http_version 1.1; proxy_set_header Upgrade $http_upgrade; proxy_set_header Connection $http_connection; } # Serve the injected files from your report directory location /emby-mod.js { root /var/www/report; } location /absent_movies.json { root /var/www/report; } 3. The Frontend Script (emby-mod.js) Save this in /var/www/report/emby-mod.js. It handles the visual tagging in the browser. (function() { async function markMovies() { try { const r = await fetch("/absent_movies.json?t=" + new Date().getTime()); const absentList = await r.json(); const absentListLower = absentList.map(t => t.toLowerCase().trim()); // Selector for movie titles in EPG and Library views const allTexts = document.querySelectorAll(".cardText, .itemName, .cardTitle"); allTexts.forEach(el => { const title = el.innerText.trim(); if (title && absentListLower.includes(title.toLowerCase())) { const card = el.closest(".card") || el.closest(".padded-card") || el.parentElement; const imageContainer = card.querySelector(".cardImageContainer") || card; if (card && !card.querySelector(".absent-tag")) { const tag = document.createElement("div"); tag.className = "absent-tag"; tag.innerText = "TO RECORD"; // Style the badge (Red, Bold, Floating) Object.assign(tag.style, { position: "absolute", top: "10px", left: "10px", backgroundColor: "#e74c3c", color: "white", padding: "4px 10px", fontWeight: "900", fontSize: "11px", borderRadius: "4px", zIndex: "999", boxShadow: "0 0 10px rgba(0,0,0,0.5)", border: "1px solid white", pointerEvents: "none" }); imageContainer.style.position = "relative"; imageContainer.appendChild(tag); } } }); } catch(e) { console.debug("EPG Check: Data not ready yet."); } } // Check for new cards every 2 seconds to handle scrolling setInterval(markMovies, 2000); })(); Credits: Special thanks to Gemini (Google AI) for the collaboration in refining this technical solution, writing the English documentation, and generating the architectural diagram. -
Can't connect to Emby from Android phone
seanbuff replied to MonteChristo's topic in General/Windows
Have you reviewed: Connecting from Client Apps -
SamES started following Minor AppleTV Bug: Duplicated items in a playlist fail to display more than once on AppleTV
-
I m on beta server, dont have any hash matches ever :-) Subs are there i always need to download them manually Try to download for something new, like from 2026,...and see if than u see hash matches
-
Subtitles on new version (v1.0.49) show strange characters
fabien_m2002 replied to hspantera's topic in LG Smart TV
Maybe not because this fix was already in 4.10.0.4-beta and this release did not resolved the subs issue: -
Davey's started following Intel UHD 770 QuickSync - Hardware Tone Mapping Produces Washed Out Colors on Unraid
-
Is March still a viable option to launch Emby for UGOS?
-
tuzim started following Backdrop has become permanent
-
For some nostalgia I was watching Dragonball Z. All of a sudden the episodes just stopped playing. I tried turning the TV off, resetting it, everything. I gave up and decided to put on Scrubs. Because my Scrubs episodes aren't widescreen, there's usually black bars on the left and right. Instead, there's a Dragonball Z wallpaper, which shows up on EVERY show. I tried watching a widescreen movie, and instead of blackbars on the top and bottom, the DBZ background is there. According to ChatGPT I just need to select "Disable Backdrop", but I can't find that setting anywhere. So now I can't watch DBZ because the episodes won't play, I can't watch anything without a bright green dragon floating on the sides, or top and bottom.
-
I’ve had good results using it to extract emails from facebook when I needed quick, verified leads without messing around with manual searches. The real-time checks and extra details like bios made outreach feel way less generic, and exporting everything to a CSV kept things simple. It’s all cloud-based too, so I didn’t have to install anything or log into my own account.
-
DVR, check if movie already in library before recording
reneboulard replied to reneboulard's topic in Feature Requests
Proposed Solution: Visual EPG "In-Library" Indicators via Reverse Proxy Since this feature is still pending in the core Emby build, I’ve developed a workaround that identifies whether a movie in the EPG (Electronic Program Guide) is already in your library. It uses a combination of an external script and Nginx injection. The Implementation The solution consists of three main components: API Extraction Script: A custom script runs periodically to query the Emby API. It fetches a list of all movies currently in the EPG and compares them against your existing media library. It then generates a JSON file containing the "missing" status for these items. Nginx Reverse Proxy Injection: Using a reverse proxy (like Nginx), we inject a small JavaScript snippet and the generated JSON data into the Emby web interface as it is served to the client. UI Modification (CSS/JS Tagging): The injected script scans the web interface and looks for the movie IDs identified by our script. It then dynamically adds a visual tag (e.g., "Not in Library") directly on the movie details or guide screen. Why this works: No Core Modification: You don't need to wait for an official Emby update or modify the server's binary files. Reduced Friction: It eliminates the need to manually search for a movie before clicking "Record." Lightweight: The heavy lifting (comparing the library) is done by the script in the background, keeping the UI snappy. -
Intel UHD 770 QuickSync - Hardware Tone Mapping Produces Washed Out Colors on Unraid
redoXiD replied to Brendin's topic in Linux
Thanks, I wasn't aware of this. But makes totally sense, I'll try to change it. Sounds interesting, I guess a fix will come with the new ffmpeg version? Or already sooner? -
This is a great plugin an it is working very well on AppleTV. Are you still planning to add different watching times per day? i would still love to give a profile more watch time on weekends than during the week.
-
Intel UHD 770 QuickSync - Hardware Tone Mapping Produces Washed Out Colors on Unraid
softworkz replied to Brendin's topic in Linux
No, it's fine, these don't have a format parameter.
