All Activity
- Past hour
-
algarnifahd1 joined the community
-
chato5 joined the community
-
Torin reuven joined the community
-
“Original Title” is searchable.
-
That's the version I'm on, and it's not working. I don't know what other details I could possibly provide here.
-
Oh, well I’ve never seen that. Is it only on the first install of an account? I’ve been using Emby for TV for years.
-
Claudia0311 joined the community
-
huangcong110 joined the community
-
blacho2579 joined the community
-
MagNeon joined the community
-
HI, yes it has been a tough one to reproduce. We are still working on chasing it down. Thanks.
-
Nexerzzz joined the community
-
Hi, we already do this. It's mainly because some users want to be able to see it. No functional purpose other than that.
-
Msabalbal joined the community
-
HI, yes a fix for this example was made. Thanks.
-
gillmacca01 started following Best path for cleaning up duplicate People profiles / folders?
-
HI, yes that is it.
-
What app version number are you on now?
-
Hi, please post this in the dedicated topic for the theme plugin to ensure that the developer will see it. Thanks !
-
Lifetime Emby Premiere Abo, yet App keeps nagging
Luke replied to WonkoTheSane's topic in LG Smart TV
Does the LG have an internet connection? -
Hi, please show the complete screenshot of the library options. thanks.
-
Apple TV app showing wrong quality option and changing it does nothing.
Luke replied to katbyte's topic in Apple TV
OK that's a lot to go through. Can you please recreate the situation again, and then attach both the corresponding emby server and ffmpeg log files? thanks. -
Hi there, are you trying to connect to your own Emby Server, or someone else's server?
-
Revisado, sigue igual. Gracias de todas formas. Saludos
- Today
-
I use the TV display and sometimes we use a mouse and sometimes a controller. Scrolling left to right on the vertical screen with a mouse requires a click and drag and sometimes you end up clicking into an item which isn't great. Honestly making the icons smaller on the horizontal screen has been pretty good. Just wish that first panel could be changed but oh well. I know it's impossible to please everyone
-
-
Well, I'm sorry to say that this situation is not fixed or clear @Luke. I am desperately seeking some clarity and some transparency from the Emby developers about how you process scans. I'm attaching below a series of screenshots to show that I am trying to have the displayed year for some music albums be the year of composition, long ago (1594), not the year the actual albums were recorded (2013). Also attached is the log file.Here's what I did: deleted every NFO file, manually in MP3tag, created originalyear fields and populated them with the same corrrect older date did the Emby dance to remove everything from the library made sure that MusicBrainz is not supposed to be consulted. But then when I rescan and return those files to Emby, the scan for some reason is reaching out once again to MusicBrainz! and overwriting the data in my actual files. Please, please, please just provide some clear information on how Emby is doing these music library scans and how to stop it from bringing in external data that hasn't been requested in our settings and that is overwriting actual tag data that we have manually put in. embyserver.txt
-
Best path for cleaning up duplicate People profiles / folders?
ginjaninja replied to Smitty018210's topic in General/Windows
good find.. could be this then https://dev.emby.media/reference/pluginapi/MediaBrowser.Controller.Entities.BaseItem.html#MediaBrowser_Controller_Entities_BaseItem_GetInternalMetadataPath and this GetImagePath(BaseItem, ImageType) https://dev.emby.media/reference/pluginapi/MediaBrowser.Controller.Entities.BaseItemExtensions.html edit seems the ai gods agree using System; using System.Collections; using System.Collections.Generic; using System.IO; using System.Linq; using System.Threading; using System.Threading.Tasks; using MediaBrowser.Controller.Entities; using MediaBrowser.Controller.Library; using MediaBrowser.Model.Entities; using MediaBrowser.Model.Logging; using MediaBrowser.Model.Tasks; namespace Emby.PersonPathExporter { public class ExportPersonPathsTask : IScheduledTask { private readonly ILibraryManager _libraryManager; private readonly ILogger _logger; // Emby automatically injects dependencies via the constructor public ExportPersonPathsTask(ILibraryManager libraryManager, ILogManager logManager) { _libraryManager = libraryManager; _logger = logManager.GetLogger(Name); } public string Name => "Export Person Paths and Metadata"; public string Key => "ExportPersonPathsAndMetadataTask"; public string Description => "Logs the InternalMetadataPath and ImagePath for every person in the Emby library."; public string Category => "Maintenance"; public async Task Execute(CancellationToken cancellationToken, IProgress<double> progress) { _logger.Info("Starting Person Path Export task..."); // Query items of type 'Person' recursively across the entire database var query = new InternalItemsQuery { IncludeItemTypes = new[] { Tuple.Create(typeof(Person).Name, false) }, Recursive = true }; var people = _libraryManager.GetItemList(query); if (people == null || people.Length == 0) { _logger.Info("No people found in the library database."); progress.Report(100); return; } int totalCount = people.Length; int currentCount = 0; _logger.Info($"Found {totalCount} people. Iterating and logging paths..."); foreach (var item in people) { cancellationToken.ThrowIfCancellationRequested(); if (item is Person person) { // Extract paths string name = person.Name ?? "Unknown"; string internalMetadataPath = person.InternalMetadataPath ?? "No internal metadata path available"; // Retrieve the primary image path if it exists string imagePath = person.GetImagePath(ImageType.Primary) ?? "No primary image path found"; // Output directly to Emby server's primary logs _logger.Info($"Person: {name} | MetadataPath: {internalMetadataPath} | ImagePath: {imagePath}"); } currentCount++; progress.Report((double)currentCount / totalCount * 100); } _logger.Info("Finished exporting person paths."); await Task.CompletedTask; } public IEnumerable<TaskTriggerInfo> GetDefaultTriggers() { // Provides a template for manual execution, but can be scheduled to run weekly if needed return new[] { new TaskTriggerInfo { Type = TaskTriggerInfo.TriggerManual } }; } } } -
Apple TV app showing wrong quality option and changing it does nothing.
katbyte replied to katbyte's topic in Apple TV
not sure which it is but these are all files that matched grep -rl "Spirits of the Past" ffmpeg-** | while read f; do cp $f /mnt/data/video/tv/; done ffmpeg-transcode-fcff54dd-513a-443b-85a2-066c30016adb_1.txtffmpeg-transcode-f4184396-4d4d-4c6d-a656-ea54ee58e97c_1.txtffmpeg-transcode-e322ee11-66f0-4b5e-b853-b2191ad02e57_1.txtffmpeg-transcode-d106dce1-73f6-4c47-b2f8-1f8b6415bdaf_1.txtffmpeg-transcode-cc7dd2d1-37ff-4534-bf6b-a4a5418ab135_1.txtffmpeg-transcode-bb8eb1f2-2bd5-43db-9252-63ce5dea49f9_1.txtffmpeg-transcode-a68736e9-0fd7-4d9d-83ae-9c2e245cb584_1.txtffmpeg-transcode-2289a81b-d94b-40d7-bfec-11b8bebb7a7a_1.txtffmpeg-transcode-002285c5-c5ee-4867-8a23-dacdacd76b9e_1.txtffmpeg-transcode-944b8adf-111f-4f3e-8a4c-c16d44c63165_1.txtffmpeg-transcode-801ee35c-cd45-4b34-86d6-04ea2ef8f8d4_1.txtffmpeg-transcode-492f5b57-a9b7-4a26-90a5-a9d735cbd20e_1.txtffmpeg-transcode-91c11f22-3495-4af9-97da-a4afd34b30bc_1.txtffmpeg-transcode-66db8e72-2556-402b-a344-20287a091378_1.txtffmpeg-transcode-54cd4946-ec81-45f1-bca6-5973aa45fea7_1.txtffmpeg-transcode-8a5e0110-fdb1-4036-a35e-0604c8f32ce0_1.txtffmpeg-transcode-7f0c8aeb-abcb-4675-abdb-d211da3123b4_1.txtffmpeg-transcode-5dc962c2-7bc9-488c-a73e-102ed2c82841_1.txtffmpeg-transcode-0ec82fc6-fcba-4074-bdf6-2e562689dc43_1.txtffmpeg-transcode-0c72ad22-8751-4960-9b62-972df82e4b2a_1.txtffmpeg-transcode-0a501703-b9ad-4393-a4c2-13f7d2bd00ff_1.txt -
Thank you very much for this! I just started using Gotify and this is great.
- 23 replies
-
- 1
-
-
-
When it comes to death, you will always loose. Best you can do is appease him. But yeah, i need to start actually start reading the agreements i sign. Btw. i have a couple of days before the next event i have to attend so looking into it now. If i'm right, it's just changing the script a bit so hopefully not much work.
-
What is your CPU model please ? @Mahinepuai7 4770 2013 @nicko84i3 6100T 2015
