All Activity
- Past hour
-
Juancaza12 joined the community
-
Reihan joined the community
-
ss113 joined the community
-
Jorzgz joined the community
-
Rajesh456 joined the community
-
Machri joined the community
-
MouniEater joined the community
-
methawarin joined the community
-
Speedee_boy joined the community
-
alexx7nexus joined the community
-
sorry for multiple posts - there may be some group policy settings relating to when running on a domain that may be relevant to what the emby client app is trying to do
-
The procmon capture in the PML file you provided started at 11:05:37 and stopped at 11:07:13 The emby windows app was launched at 11:04:56 and exited at 11:06:00 There is an emby client log that shows it re launched at 11:06:11 and closed at 11:06:41 but the procmon capture seems to have been stopped at 11:06:04 and resumed capture at 11:07:03 - did you touch the capture button other than at the end to stop the capture? It is important the the the time the error pops up is known so can be used to check the procmon and emby client log Were you trying to get the diagnostics for 11:06:41 exit ? The procmon capture was stopped at the time and resumed later
-
Hi. I'm using the latest version of this plugin and when I try and import my m3u playlist I get this error message: Error code: Out of Memory
-
An observation on the test you did and the PML file It shows that the EmbyClient process was already running before starting the test It would be best to try a test with a launch where there is no Emby.Client.WinUI.exe process showing in Task Manager - if there is one - kill it and then launch Procmon and start capture without filtering any and then launch Emby Windows app and when the error pops up, note down the time and capture the diagnostics
- Today
-
There is a bug in version 2.3.8 with .ass files
visproduction replied to MediaEmby1968's topic in Samsung Smart TV
Did you notice that the OPensubtitle plug in is getting an error embyserver con depuracion.txt line 328 Is there a problem getting to github.com from your server? I can find the file from a US server. Maybe turn of the plugin and see if that helps. Was that tried before? === For external subtitles, try naming the .ass file exactly the same name as the media .mkv file and use two letters for Spanish, so that the .ass file would be: Tracker 3x21.es.default.ass If that still doesn't work, try changing the media file to not use the x but the more standard season and episode title and also update any external subtitle filename: Tracker S03E21.mkv Tracker S03E21.es.default.ass -
Sure I can test. But it will have to wait till next week. Just left for the airport, going on a work trip. Will be back late next sunday.
-
Neminem started following Emby
-
Did you read Quick Start and understand it? Did you install your own server, with your own media, on your own hardware ? Your options are (1) install a server. See Quick Start link above. (2) ask a friend who runs a server to let you use theirs. (3) access an illegal server (no further instructions here). If someone else's have a talk with them. Emby does not host your server and do not supply media files.
-
You have your codecs confuzzled. AVC is H.264. 4k content would be H265 which is HEVC. If you're encoding a bluray REMUX down to HEVC and it's still 18GB, that is still rather large. Again I would suggest you take a look at the doom9 forum for guidelines on how to use quicksync to it's fullest potential.
-
We really need better multi version handling for Continue Watching
RanmaCanada replied to te5s3rakt's topic in General/Windows
Spider-Noir is special, but you could just have the directories named properly as per the Plex forums. Spider-Noir (2026) Authentic Black and White {TVDB-478492} Spider-Noir (2026) True-Hue Full Color {TVDB-450033} the munchers at TVDB have apparently changed this and removed the colour option, as they are so wanton to do due to their power tripping, but people have said it still works. The other option is to have them in separate folders, named properly with square brackets, and then when Emby decides to be stupid and merge them, split them back apart and it should keep them separate. -
I’m having issues adding my premiere key all I can see is add my server #
-
There is a bug in version 2.3.8 with .ass files
MediaEmby1968 replied to MediaEmby1968's topic in Samsung Smart TV
I have deleted the client, turned off the TV and disconnected the power for several minutes and reinstalled version 2.3.9 again and it still has the same error -
Allow playback of highlighted item, when in season detail page.
Kyouma replied to Kyouma's topic in Apple TV
Any findings worth sharing? -
Kyouma started following Next Episode Pop-up won't show up for the credits chapter
-
Hello, usually when a credits chapter is present a pop-up will show up to play the next episode or continue playback . This works for Intro but not for credits. When playing the same file on the phone it will show up. But not on apple tv I could not find any settings regarding this. Did I miss something or is it not available on apple tv?
-
I did that and it was better. I had about 100 existing collections with no poster and doing that and refreshing ALL left about 3 without. I refreshed those 3 again and the poster worked. thanks
-
We are just about to release two "Agent Skills" - one for Emby Server Plugin Development and one specifically for Plugin UI. The skills were created by a huge distillation ofr information, including our own plugin code, which tmakes it the strongest and most vailable piece of condensed information available anywhere. (shouldn't take more than a few days)
-
No The story about the DxGrid is quickly told: when working on tvnext, a capable grid was needed, which can handle large amounts of data, perform client-side filtering, drag-drop sorting etc etc. Most of our client code is free from 3rd party libs, except some video players, subtitle and pdf renderers - so there has been some controversy about whether to use a 3rd party grid, even though development of something equally capable would have been beyond far beyond reasonable. And so it became used but more like something "half-official" at best. It was made to work for the cases we need ourselves, but not for alll possible cases how one might want to use it. We had just mirrored all of its APIs to our own GenericEdit API because that's a one-time work instead of extending each time something is needed. Eventually, that part of GenericEdit interfaces was included in oujr DevDocs as it it would have been weird and not helpful to leave things undocumented which everybody can see anyway. Your question is getting right at the relevant point, asking whether and how you could/should use it. Now, the DxGrid is good for the following: When you need some kind of multi-column list (with small or large amounts of data), with or without checkbodes When you need perfect and high-performant client-side handling of data With filtering, sorting or other local data shaping operations And when you need or are find with having the data being round-tripped, like: Client loads data from server Grid displays data and allows to interact and even edit the data Client sends data back to server when done but is's not a good choice for Live data being updated from the server-side (unless its just a few rows) The grid itself can do that, but our APIs do not support such paths Beyond the technical layer, there's also he question of what is reasonable. You say you have a large amont of data which is live updating - I'm not sure how muich sense this would even make, because when data is frequently changing, it's hard to understand and follow this - unless you already have some grouping/aggregatoin and/or filtering in place, which means that effectively, the number of rows which are being viewed is small again regardless. For presenting quickly changing data, I think GenericItemList is still the best bet. It doesn't need re-rendering of all html (differential DOM updates). Whether good or bad, strongly depends on the case. For the DxGrid, you must not assume that youj get all of the functoinality that it supports when used directly. It''s still a GenericEdit feature and the client side could be implemented with a different grid (or our own custom-developed) grid in the future. GenericEdit/Plugin/UI is meant to make development easier. But there may be cases where fighting with the limitations in capabilities requires more effort than using plain html/js directly. We have two such cases ourselves, where htmljs is just a better choice (opposed to the other hundred).
-
Thank you So you are using a domain for windows login rather than default setup of a local user account on the computer This brings in a new angle to follow up on Can you try as a test creating a temporary windows local user account on PORTATIL and run Emby Client in it and see if that gives different outcome.
-
On a mobile device, yes. Try to play something and it should offer you the option.
-
We do not integrate with any of the content acquisition features of those apps. Torrents are nothing but content acquisition and 99% illegal ones at that. Thanks.
-
TV Show Status — TMDB-powered Returning/Ended/Cancelled badges for series
Blueskies278 replied to Blueskies278's topic in Plugins
UPDATE 1: Hopefully, I should have the first beta up in a few hours. Right now, I'm trying to fix a bug relating to prepend status to show the description.Fixed. UPDATE 2: Now implementing a hands-off refresh option for users with an Emby installation (Windows/Synology app, no SSH/Docker access) who have no easy way to force an immediate refresh after changing a setting. I am adding this so that hitting Save on the settings page automatically triggers an immediate refresh—no restart needed, for anyone. UPDATE 3: Making sure the plugin meets all emby standards. UPDATE 4: Few more final checks before uploading Beta 1 -
Workaround: customize UpNext / Next Episode prompt timing in Emby Web
ebr replied to lolotux's topic in General/Windows
Hi. I imagine this will be too aggressive. In my experience, 45-55 minute episodes do not have 2+ minutes of credits. One thing for readers to be aware of is that modifying the source components like this will get overwritten on each update. You could just create end credit markers using one of the plugins instead. -
Hola, no. Portatil es un equipo. Jpcefm es el dominio al que pertenece (ad). Saludos
