Leaderboard
Popular Content
Showing content with the highest reputation on 02/07/26 in all areas
-
They go away if you don't use folder view.2 points
-
Ich habe den Dateinamen erweitert zu "Das Phantom (1996) {tmdb-9826}.mp4". Jetzt wurde der Film gefunden.2 points
-
1 point
-
I think this is what you're looking for. App settings -> Display -> Preferred TV show display -> Always show season folders.1 point
-
Just to follow up - I used Tailscale and everything is working well. Thanks Phil1 point
-
Haha, I guess I didn't see the right version... Just checked on Google store and it's 3.5.28.. I saw 3.9 and thought that was the version... It was the star rating, but my daughter was having me look at it all upside down as she was not happy about me "testing" on her device haha1 point
-
Now it works as expected. Thank you again for this super work and fast replies.1 point
-
I need to sit down and pull out all the devices to check, but it's going to be annoying if it turns out my problems were due to a workaround for a problem that had been patched like a year or two ago and I had just given up on trying to fix.1 point
-
Sorry, had to step out for a while... So in the case I outlined, where there are multiple titles for the same movie, I'm envisioning this. Then, either in the movie list header like this, or in the filter drop-down, whatever... A toggle to "Show Alternate Titles" if the user prefers it that way. Simple, clean... And just a suggestion to make life easier when users collect things that have re-issues under different names, etc... If we use the hack for a comma-separated list, in my image above, that would create a movie called "Ebirah" and a movie called "Horror Of The Deep". Any movie with a comma would cause this issue. Also, the movies in my library have English names, with many alternate titles in other languages. To search, I'd have to know how to translate/spell Italian. It's actually cleaner and simpler this way. If the user doesn't enter alternate names or select the toggle, nothing is different. It would only change the display behavior if a user chose to do it with duplicates shown. By default, the metadata update scripts could take the "Original Title" if it's different than the title itself, and add that as the first "Alternate Title", so users would have some entries created by default if they chose to enable the display of those items. Hope that makes sense...1 point
-
So this topic has been going on for a while. do we know when this is going to be put in the next update? one piece (the anime) has 5 orders and i need to use the Streaming Order.1 point
-
I'll absolutely necro-post this; Just got emby with hw acceleration working on FreeBSD 15.0. What a journey... I followed this guide as close as possible, however the tar for the fake /sys is offline in the meantime, so a bit of trial and error was key. For everyone trying to replicate here is my working one: sys/ sys/bus sys/bus/pci sys/bus/pci/devices sys/bus/pci/devices/pci0000:00 sys/bus/pci/devices/pci0000:00/boot_vga => 1 sys/bus/pci/devices/pci0000:00/vendor => 0x10de sys/bus/pci/devices/pci0000:00/device => 0x1ff2 sys/bus/pci/devices/pci0000:00/drm sys/bus/pci/devices/pci0000:00/drm/render0 => link to /dev/dri/render0 sys/bus/pci/devices/pci0000:00/class => 0x030000 sys/bus/pci/devices/pci0000:00/subsystem_vendor => 0x17aa sys/bus/pci/devices/pci0000:00/subsystem_device => 0x1613 sys/bus/pci/devices/pci0000:00/enable => 1 This gets ffdetect to a point where it tries to use the card. Next hurdle is vaapi... for an nvidia card you need libva-nvidia-driver, that however is a bit special itself. its not enough to hand it /dev/dri and /dev/drm, it also wants /dev/nvidiactl and /dev/nvidia0 (yes, nvidia0; thats hard-coded; my host always creates nvidia1, so symlink that). for good measure I also put /dev/nvidia-modeset into the jail even though it might not be needed. Next this little beast also needs CUDA... this made me pull my hair and have me install half a linux in /compat, more precise the libc6-shim package. With that you get the nv-sglrun ruby script that somehow (don't ask me how, I stopped digging deeper at that point) makes CUDA available. Bare with me, we're almost there... just one little wrapper around the ff* binaries in /usr/local/lib/emby-server/bin and we're there. So rename the original binaries to _real and for each put a wrapper like this in: #!/bin/sh export PATH=$PATH:/usr/local/bin /usr/local/bin/nv-sglrun /usr/local/lib/emby-server/bin/ffdetect_real $@ And will you believe it, it freaking works. All this crazy setup just to find out that libva-nvidia-driver only implements hardware decoding, no encoding (╯°□°)╯︵ ┻━┻ Well, its better that nothing i guess. And maybe some day claude will be good enough in generating code to close that gap; the humans don't seem very interested in implementing it. DISCLAIMER: This is a very striped down version of my pain, i faced lots of missing symbols, version mismatches and spontaneous reboots on the way. I might have missed some steps but I'm happy to help anyone brave enough to try. FINAL RANT: Is this really the way to go? This seems unnecessary complicated, doesn't it? Can we not just have nice things, please?!? /cheers1 point
-
@LukeI just wanted to update this topic. Emby is NOT causing this issue. What I discovered it that my UHD Drive is having issues performing clean rips of older DVDs using MakeMKV. It's a known issue with some DVD drives.1 point
-
I did delete the two shows after we watched them last night, not really thinking that would be a problem after looking at the information shared. Hopefully they will be able to add the episode and season check. thank you everyone for your help... John1 point
-
New verison 1.3.1.0 v1.3.0.0 Blacklist: Enter items you want to exclude from the tag/list UI updates: Remade the tag list so you can enter multiple URL for same tag. Some other UI improvements, example better support for light Emby theme. v1.3.1.0 Fixed a bug with limit list not showing in settings. https://github.com/soderlund91/AutoTag/releases/tag/v1.3.1.0 This one should work with both Emby server 4.9 and 4.101 point
-
Shuffling isn't good. While doing construction on my house, I had a 3-day long playlist going. My friend knew what songs were going to be on after certain songs. Please implement true randomness without replacement. public static int[] GetTimeSeededShuffledRange(int maxInclusive) { if (maxInclusive < 0) throw new ArgumentOutOfRangeException(nameof(maxInclusive)); { long ticks = DateTime.UtcNow.Ticks; long highRes = System.Diagnostics.Stopwatch.GetTimestamp(); long env = Environment.TickCount64; int seed = (int)(ticks ^ highRes ^ env); var rng = new Random(seed); var arr = Enumerable.Range(0, maxInclusive + 1).ToArray(); for (int i = arr.Length - 1; i > 0; i--) { int j = rng.Next(i + 1); (arr[i], arr[j]) = (arr[j], arr[i]); } return arr; } }1 point
-
It's more likely the OP did not subscribe to Emby Premiere for his tests.1 point
-
This immediately tells me HW transcoding is not being used, and since you're on docker, there is a little extra work to get that functional. I recently had to modify my docker configuration to reenable HW transcoding, after Docker/Nvidia changed how that's setup. I'll link the post when I dig it out. /edit: https://emby.media/community/index.php?/topic/144277-hardware-detection-fails-within-docker-container-on-previously-working-system/#findComment-14883671 point
-
1 point
-
This only works if you change the "Webservice mode" to dav or "Path substitution" but you will lose the transcoding functionality. Both is currently not possible due to Kodi limitations. I recommend "dav". Also keep in mind, the progress depends on (Emby) user accounts. If you use different accounts, the progress is different.1 point
-
Last version of the Plugin from my side with Trailer support in Github. Beware: strictly experimental since overkill settings (number of items + resolution settings) can influence the widget load time. @arrbee99Refresh button included. Important: Ctrl-Shift-R Emby page after changes to the js file.1 point
-
1 point
