All Activity
- Past hour
-
Gaby.T joined the community
-
Chiraag4455 joined the community
-
Dcryan90 joined the community
-
pavlikdavidov joined the community
-
malmhboub0 joined the community
-
Sgstraga joined the community
-
Ramalmg joined the community
-
anwilcox joined the community
-
Swap30nil joined the community
-
CharlotteR joined the community
-
Subtitles addon reading all meta data & cannot find title
quickmic replied to piyade12's topic in Kodi
This issue was fixed long time ago. -
Updates: Added missing admin help button to the header-icon-colors Fixed the logo that took a nap when the sidebar was collapsed. More ordering options (see section 1 updates) Fixes to some icon colors, more targeted. (see section 1 updates for a new color being used) Fix to --play-button-display not being respected anymore Section 1 Updates: If you customized your CSS, you could keep your section 1 and just update section 2 on down. but here are the important things that were added or changed so you can modify accordingly. Layout ordering has been updated to this to add in more targets /* --- LAYOUT & ORDERING --- */ --order-seasons: 1; /* Vertical order of Seasons section */ --order-next-up: 2; /* Vertical order of Next Up section */ --order-more-from: 3; /* Vertical order of "More from Season/Artist" sections */ --order-chapters: 4; /* Vertical order of the Chapters row */ --order-included-in: 5; /* Vertical order of "Appears In" / Collections section */ --order-cast-crew: 6; /* Vertical order of Cast & Crew section */ --order-similar: 7; /* Vertical order of "More Like This" (Similar) section */ --order-about: 8; /* Vertical order of the Text Overview/About section and Media stream info cards */ New variable section /* --- STATUS OK COLORS --- */ --status-ok: rgba(76, 175, 79, 1); /* Good status color, green checkmarks */ Emby Navy and Gold v5.4.css
-
Danke - war von haus aus aktiviert. nfo werden aber scheinbar nur für Serienfilme greifbar generiert. Bearbeite die vorhandenen Dateien jetzt mit Notepad++. Ein Hinweis auf die Syntax und den Aufbau wäre noch nützlich. Z.B. <tvshow> ersetzen mit <movie>? Welche Datenblöcke sind essentiell? Usw. TinyMediaManager werde ich ggf. ausprobieren, zumal das Tool sehr günstig ist. Hätte aber erwartet, dass eine vergleichbare/bessere Funktion (funktionierend) bereits integriert ist. Obwohl emby eine gute Anwendung zu sein scheint, mangelt es doch da und dort deutlich. Intuitiv bedienbar "nein", "Dokumentationen" verbesserungsfähig, Erkennung von logisch angelegten Ordnerstrukturen "stark verbesserungsfähig", Nachbearbeitung von Einträgen "mühsam beschreibt es nicht einmal annähernd". Wie z.B. kategorisiert man einen "Film" neu, der als Serie erfasst wurde? Mir stehen jetzt viele Wochen der händischen Nachbearbeitung bevor - herzlichen Dank emby. Euch sollte bewusst sein, dass immer die Sammlung nach der Verwaltung kommt. Deswegen gehören Strukturerkennung und Nachbearbeitungsmöglichkeiten auf die Prioritätsliste nach weit oben.
-
Neminem started following Película y serie , Trakt export to library stopping. and Authentication failed
-
@Maestro27devs will need logs from that attempt.
-
Users get access to directories they shouldn't
Tigga5 replied to NicerDicer's topic in General/Windows
While it's good that this is finally being addressed, this comes 6 years after the community first demonstrated how easily library images could be scraped via ID enumeration, and over 2 years after the dev team acknowledged that they plan to address it. Fixing security debt from 2020 isn't exactly a win here. It's just further proof that basic security practices have long been ignored and consistently taken a backseat to other features. - Today
-
From you screenshot it looks like your NOT connecting from your remote IP. Connecting from Client Apps
-
Yes will all want something to watch Here is how Quick Start
-
Subtitle translation using local LLM or API calls - Very accurate language - cheap.
Neminem replied to dexus's topic in Tools and Utilities
Cool would love to teste it, if you made a docker version. And give you feedback on the tests. -
Does that mean I will have to add all the thumbnails again?
-
castrox started following Película y serie
-
Subtitle translation using local LLM or API calls - Very accurate language - cheap.
dexus replied to dexus's topic in Tools and Utilities
Hi! There is a flag you can set in the cli when running the script to make it not touch the mkv at all, and just save it as a .srt file. Also. It shouldn't be much trouble making a docker version.. The only thing that might not work is the picker function in the linux version (It has a "picker.sh" script that lets you fast-search for movies and shows based on the paths you set in a config file, to make it easy to start the script on a particular movie or show). Tell me if you would like me to make a docker version, and i will look into it. That said, it automatically runs in its own environment using venv on linux or conda on powershell, which it auto checks for during installation and offers to install if missing.. -
I've been having this issue for awhile now. I've changed the pin numerous times and it always fails. It seems now when I try to request a new pin. I get the pin, enter it into Trakt plugin, but it just gets stuck saving. Checking on Trakts end, the access isn't even being created in Connected Apps.
-
Conversions filling system disk: Any way to set a storage cap?
Q-Droid replied to me@jackbenda.com's topic in Linux
If you're running Linux to Linux then NFS might be more reliable. -
@visproductionthank you for the advice. I'm currently doing some investigations on what the root cause could be (with different media). It has happened to both Apple TV and LG app where it just stopped. Just now the Apple TV app just crashed to the home screen. I have taken the log snippets and should probably start my own thread about this issue to not confuse anyone else finding this thread.
-
Conversions filling system disk: Any way to set a storage cap?
me@jackbenda.com replied to me@jackbenda.com's topic in Linux
OK so after enabling debug logging and running some test conversions, I can confirm the conversion feature itself works well. QuickSync hardware encoding, files writing correctly to the temp directory, replacements landing in the right place. No permissions issues (emby user is in the correct group with write access to the NAS shares). The problem I hit was a resilience issue rather than a conversion bug. Here's what happened: 1. Emby was mid-conversion, writing finished files back to the NAS via the Transfer media task 2. My (slightly crap) NAS became temporarily unresponsive under load 3. The CIFS/SMB mount hung at the kernel level which i think is a known Linux behaviour where processes with open file handles on an SMB share block indefinitely waiting for the server to respond 4. Emby's Transfer media task stalled on "Stopping" and couldn't be cancelled from the UI 5. The only recovery was a full server reboot This isn't really an Emby bug, it's a Linux kernel CIFS behaviour. But it does raise a question about whether Emby could handle NAS disconnects more gracefully during conversion transfer, perhaps with a configurable timeout or retry mechanism rather than hanging indefinitely. On the Linux side, the fix is to add echo_interval and echo_retries options to the fstab CIFS mount, which reduces the time before the kernel declares the server dead from ~5 minutes to ~60 seconds. But even with that, processes in uninterruptible sleep will still hang temporarily. Is there a cleaner way to handle this? Specifically, whether Emby has any internal timeout on file transfer operations that could be configured. -
MediaInfo For Emby Plugin(HDR, Vision, Atmos, DTS:X)
rbjtech replied to Cheesegeezer's topic in Plugins
Tks. The quotes are going to be tricky to accomodate as those are used to pass the params to the external executables - you may have to live with that one. The HDR in AV1 .. good call, I don't think I had an HDR AV1 file to see how Mediainfo presented that. Can you post a JSON output from the file via the GUI Mediainfo ? -
For the border you want /* --- UI DIMENSIONS & SHAPES --- */ --hover-border-thickness: 2px; /* Thickness for glow borders on hover */ I'll look into the mystery of the sleeping logo. EDIT: Fixed the logo, it will be in the next update.
-
External Player (Vimu) resume position issue on Android TV
franco72 replied to franco72's topic in Android TV / Fire TV
Some friends pointed out that the latest Jellyfin Android TV client now fully supports Vimu as an external player for the exact same reasons I mentioned earlier. I tested it yesterday, and it’s true: Jellyfin now passes the resume tokens to Vimu perfectly. However, I much prefer the Emby interface; it looks far more polished and professional than Jellyfin’s layout. In my opinion, as a paid Emby user, it would be great to see the same level of external player integration that the free Jellyfin app already provides. It would make Emby the undisputed leader for high-end home theater enthusiasts who rely on Vimu for the best possible playback experience. -
Forgotten about the problems you had, very sorry about that. Not sure precisely what Emby goes after when catalog is used but i would guess changing the version number to some high number would be enough, to be 100% safe the "[assembly: Guid("b8d0f5a4-3e96-4c0f-a6e2-9f0c2ecb5c5f")]" in Assemblyinfo.cs can be changed too to something else.
-
Subtitles addon reading all meta data & cannot find title
9appsdl replied to piyade12's topic in Kodi
haha yes, thats exactly what i did. -
Conversions filling system disk: Any way to set a storage cap?
me@jackbenda.com replied to me@jackbenda.com's topic in Linux
No I don't think so. I double checked and I did already have all the permissions set. I honestly don't know what happened last time, but it does seem to be working now and I've got a telegram bot to warn me if the directory starts ballooning again. -
Apple TV App cannot connect via DDNS on port 8096, while iOS app and browsers work
famarch replied to famarch's topic in Apple TV
@SamESThanks for suggestion. I‘m currently not on site, but I‘ll look into it asap and report back. -
Neminem started following Search functionality is broken
-
I guess you are running Emby beta.
-
embyforkodi (next-gen) 11.X.X support
danzigman replied to quickmic's topic in Emby For Kodi Next Gen
I've been using Emby for Kodi and had to use an external flash drive and the pathsubstitution setting in Kodi to use it for the thumbnails folder, and thus free up space in the Android TV. I found out that if something goes wrong with the library scan such that I have to reset the local database or uninstall the addon and make a new library scan, then scanning can be very slow because it's writing to the external drive. I have to remove the pathsubstitution setting first and let the addon scan the library and write to device storage first, and then after that put back the pathsubstitution setting. Finally, I don't know if things will be easier if I use the Android settings and configure it to make Kodi store its user files in the flash drive, or if it won't make a difference. -
Hey @yocker, it's really cool that it is now in the pluginstore but can you maybe help me out because i used a custom compiled version of it with my own icons and it was simply overwritten now. If i create and compile the project as you advised couple months ago what do i need to change so that the autoupdate feature doesn't overwrite it again? Thanks again for this awesome plugin and the constant updates!
