All Activity
- Past hour
-
monito1 joined the community
-
TMCsw started following Scan Library Files
-
Show us what these two commands return: ls -lah "/mnt/hde4TB_4/Filme/Animações/[2025] Zootopia 2" namei -l "/mnt/hde4TB_4/Filme/Animações/[2025] Zootopia 2/[2025] Zootopia 2.mkv"
-
changuito joined the community
-
mono222 joined the community
-
changos joined the community
-
jakenoonan joined the community
-
Tacy_boo joined the community
-
lunita456 joined the community
-
avioneta joined the community
-
Skip Intro markers not being generated despite scheduled task completing
TheFreeMan replied to UsamaWaheed's topic in Linux
TBH, it's been a number of days since I did this and I wasn't making note of the time stamps... Prior to making this comment (by probably 30 minutes - it took some time to do some searching to find this thread), I'd tried playing S15E7 and the Skip Intro option was not there. I ran through the delete/import/scan process prior to the above linked comment posted at 1739 local time. I then stepped away, waiting for a response and did something totally different for a while. You followed up at 1914, and in response to that I posted at 1934 with the comment at the bottom that the Skip Intro button did appear, but that I hadn't tested. My presumption was that the 0 seconds of processing time indicated that nothing had happened - that presumption was wrong. It would have been shortly before I posted that comment, so roughly 1930-1934 local time when I checked S15E7 and the skip intro was there. I'm playing the video on Kodi with the Emby for Kodi Next Gen plugin interfacing with Emby. I did not reboot my Kodi box, reset the E4K plugin, or any other actions. Upon import, Emby notifies Kodi of new files, and the E4K plugin pulls whatever data is currently available (you'd have to ask quickmic for the details on how). -
andy0 joined the community
-
TV Shows feature "Upcoming" to go back a week or so, instead of just "Yesterday"
jscheeren replied to jscheeren's topic in Feature Requests
Fair enough, but the current way may not be nearly as consistent in usage, nor easy trying to float between the two views given where each are in the GUI. Yes, of course "Upcoming" may not be the best semantics, but really, having Yesterday in that list is also including some Missing.......Point being it may not be that difficult to develop to include a few days back, if one already has Yesterday and Incoming could maybe have a change of label if the development architect was concerned. Maybe one could look at Trakt and how they do it. Cheers, Jan -
Most movies/tv genres lost image montage
CharleyVarrick replied to CharleyVarrick's topic in General/Windows
Genre by genre, I refreshed md with option to replace existing images, and that repopulated the pics. -
While true, this is not completely accurate. You can change the URI to /emby/web from /web in the browser and everything works normally. I guess you could allow/block access to the /web path based on User Agent string, but that can still be spoofed so you're probably better off just not giving people admin access.
-
Your problem would be much easier to resolve if you actually read the responses you're getting. There is already a setting to prevent remote access to the admin account, should you so desire. “HTML access” isn't a thing and has no effect on what you're trying to do, because the admin dashboard is just as easily accessible through the apps as the rest of the interface is. Why do so many of your users have admin access in the first place?
-
@ebrcould there not be a simple on/off flag added to the admin dashboard under the user setting to enable/disable HTML access? my users never login via browser to the HTML site, they are only using apps like ipad/firetv, etc. They have no need for browser access and the HTML site could be turned off Ideally the Admin Dashboard should be moved to its own port, or be able to select Admin Access to localhost only as well, but if I can at least restrict my users to not have HTML access then that would be good
-
Most movies/tv genres lost image montage
CharleyVarrick replied to CharleyVarrick's topic in General/Windows
Before, as in a few weeks ago at most, all genres would have a 4 pic montage of movie posters found in that genres. They would show only movie posters on movies library, and tv posters for tv show. - Today
-
That's the Emby server log, not the kodi.log. I need the logs from Kodi for review.
-
Un fallo en la redireccion de puertos. Gracias a todos
-
Yeah, you are equating "web access" with "admin access" and that isn't the same thing at all. Blocking browsers (or whatever you are thinking of as "web access") is not going to stop admin access.
-
TV Shows feature "Upcoming" to go back a week or so, instead of just "Yesterday"
ebr replied to jscheeren's topic in Feature Requests
Hi. Going backwards that far would make them Missing not Upcoming - which we also have... -
But...the dashboard is also accessible through the apps. Just don't let the admin account connect remotely.
-
@sh0rtymy initial concern is that if I open 8096 externally for the apps to connect, then I am also exposing the admin dashboard since its listening on the same port, one mistake by the emby devs, could lead to a compromised server. However since all my users only use the apps, I see no reason to have this HTML access open at all, and I was looking for a way to disable it for regular users.
-
jscheeren started following TV Shows feature "Upcoming" to go back a week or so, instead of just "Yesterday"
-
TV Shows feature "Upcoming" to go back a week or so, instead of just "Yesterday"
jscheeren posted a topic in Feature Requests
I can't believe I only just found this feature, which could change much for me and I suspect many others. This feature is also not found in Plex. Server owners NEED to know when TV Show episodes have aired, or about to be aired, so as to keep content up to date. But this info needs to be based only on what they have in their library. Trakt now charges over CAD$80 per year, so that server owners can get this info and may very well not need to use it for anything else! Emby Server could do this better for them, if it was also able to display in the "Upcoming" item previous days, as well as "Yesterday" - as not all server operators can do this check every day. Regardless, it would be super if Emby could somehow promote this feature, regardless of my suggestion for improvement. -
Plugin: EmbyCredits, detect end credits and add auto skip.
spk2010 replied to yocker's topic in Plugins
credits_detector_backup+scan.sh: #!/bin/bash API_KEY="XXXXXXXXXXXXXXXXXX" EMBY_URL="http://localhost:8096" BACKUP_FILE="/home/pi/emby_backup/credits_detector_backup.json" LIBRARY_ID="242" echo "=== RESTAURANT BACKUP ===" if [ ! -f "$BACKUP_FILE" ]; then echo "No hi ha backup, en creo un inicial..." curl -s -X POST "$EMBY_URL/emby/CreditsDetector/ExportCreditsBackup?api_key=$API_KEY" \ -o "$BACKUP_FILE" echo "Backup inicial creat" else jq -Rs '{JsonData: ., OverwriteExisting: false}' "$BACKUP_FILE" > "${BACKUP_FILE}.ready" curl -s -X POST "$EMBY_URL/emby/CreditsDetector/ImportCreditsBackup?api_key=$API_KEY" \ -H "Content-Type: application/json" \ --data @"${BACKUP_FILE}.ready" rm -f "${BACKUP_FILE}.ready" echo "Restauració feta" fi echo echo "=== INICIANT ESCANEIG ===" curl -s -X POST "$EMBY_URL/emby/CreditsDetector/StartDetection?api_key=$API_KEY" \ -H "Content-Type: application/json" \ -d "{\"LibraryId\":\"$LIBRARY_ID\",\"SkipExistingMarkers\":true}" echo URL="$EMBY_URL/emby/CreditsDetector/GetProgress?api_key=$API_KEY" while true; do STATUS=$(curl -s "$URL") RUNNING=$(echo "$STATUS" | jq -r '.IsRunning') DONE=$(echo "$STATUS" | jq '.ProcessedItems') SKIPPED=$(echo "$STATUS" | jq '.SkippedItems') TOTAL=$(echo "$STATUS" | jq '.TotalItems') CURRENT=$(echo "$STATUS" | jq -r '.CurrentItem') echo "Processats: $DONE | Saltats: $SKIPPED | Total: $TOTAL" echo "Actual: $CURRENT" [ "$RUNNING" = "false" ] && break sleep 10 done echo echo "=== ESCANEIG ACABAT ===" echo echo "=== CREANT BACKUP FINAL ===" curl -s -X POST "$EMBY_URL/emby/CreditsDetector/ExportCreditsBackup?api_key=$API_KEY" \ -o "$BACKUP_FILE" echo "Backup guardat a: $BACKUP_FILE" -
Most movies/tv genres lost image montage
CharleyVarrick replied to CharleyVarrick's topic in General/Windows
Whether they have genre images or not, everything is ok once I'm into a genre. -
have i posted this in the wrong section? thanks
-
Migrating from TerraMaster NAS to Ubuntu Server (i5-12500) - best approach for preserving watched status with
me@jackbenda.com replied to me@jackbenda.com's topic in Linux
Just to update the community, all went very smoothly with the user data. My VirtualTV plug-in config was completely screwed up, so I just reconfigured from scratch. Everything else is perfect with a bit of tweaking (had to set up some new permissions for backups to work; a bit of faffing to get HTTPS working, but nothing I couldn't work out). If anyone else is doing a migration like this, just drop me an email or a line on this forum (my email is annoyingly my display name, and I can't change it ), and I can help you if there are any steps you get stuck on! -
The latest version 2.3.3 doesn't work
MediaEmby1968 replied to MediaEmby1968's topic in Samsung Smart TV
That's what I did, I'm using for now version 2.2.8 that comes with Samsung -
Plugin: EmbyCredits, detect end credits and add auto skip.
yocker replied to yocker's topic in Plugins
Also just noticed that a metadata refresh makes it so Emby's own intro detection wont run on the series that had the metadata refreshed. The devs might need to look at that one. -
Nathanael started following The latest version 2.3.3 doesn't work
-
The latest version 2.3.3 doesn't work
Nathanael replied to MediaEmby1968's topic in Samsung Smart TV
Same problem on a Samsung UE55KS8002. The app installs, but when started a popup shows up with "wait one moment and try again". But the app never starts. There are no server logs as we do not get to the connection setup screen. -
Plugin: EmbyCredits, detect end credits and add auto skip.
yocker replied to yocker's topic in Plugins
New version in the test phase right now. Btw. mind sharing the cron job? -
Moved media Library to new location. Some media's metadata points to old Paths and won't play.
beefsnack replied to beefsnack's topic in General/Windows
Not yet, but the ones That I have replaced I have moved to a completely new folder yes. -
Moved media Library to new location. Some media's metadata points to old Paths and won't play.
beefsnack replied to beefsnack's topic in General/Windows
several times
