All Activity
- Past hour
-
This is normal now. this dialog allows you to quickly cancel in the event the server is unreachable. Then you can quickly get to the server selection screen to enter new connection info. Previously you would have had to wait for it to timeout with just the loading spinner and no way to stop it.
-
戈壁蘑菇 joined the community
-
That's not normal. Where are you looking for them?
-
Aquanymis joined the community
-
Is your remote address changing?
-
Rathva008 joined the community
-
Jrgh5u joined the community
-
Juniper671 joined the community
-
Grougal joined the community
-
How long do restores take now? Is there any way to see status?
Luke replied to moviefan's topic in General/Windows
Hi, yes the log should have quite a bit of activity in it. That's the best way. -
lokcasper joined the community
-
DesiSage03 joined the community
-
Taki96 joined the community
-
Heff23 joined the community
-
TrailerTheme – Trailer & Theme Song Downloader for Emby/Jellyfin/Plex (Windows)
Gembird79 replied to Gembird79's topic in Third Party Apps
Hi! No, that wasn't me, I haven't been on EFnet. But thanks a lot for the compliment, I really appreciate it! -
Alexa stop playing after the first song ends on multi echo devices (3rd generation).
hatharry replied to Goober77's topic in Amazon Alexa
Alexa has been updated, can you please try again? -
New app out just like Emby
RanmaCanada replied to FourCorners's topic in Non-Emby General Discussion
This entire thread feels like an influencer trying to sling their garbage, specially with the amount of lies being peddled.. It appears the main coders worked on Streamio in the past, but I do also wonder how much has been vibe coded as a few of the contributers have almost zero experience on github.. You are free to do whatever you want with your own Emby client/server as it does support css. Heck there is an entire sub forum dedicated to it. Also wonder if OP is mentally well as they went completely unhinged. - Today
-
New app out just like Emby
FourCorners replied to FourCorners's topic in Non-Emby General Discussion
Sorry im done, you guys dont even try you did nothing for months im not paying for nothing,,, sorry. -
New app out just like Emby
FourCorners replied to FourCorners's topic in Non-Emby General Discussion
Yeah ima bail on emby, nothing is being done, no one cares, emby feels like stone age while free stuff is way better. Sorry but yah ima cancel emby you guys dont even make an effort to try anymore. -
New app out just like Emby
FourCorners replied to FourCorners's topic in Non-Emby General Discussion
Like why does a free front end look better than emby like wtf.. wtf am i paying for -
New app out just like Emby
FourCorners replied to FourCorners's topic in Non-Emby General Discussion
Yeah i rather not even **** with nuvio, i dont need or want all bunch of extra app ****.. just make emby sexy. -
Thanks. Was just curious about any front ends like this, but not that desperate..
-
New app out just like Emby
FourCorners replied to FourCorners's topic in Non-Emby General Discussion
I just would rather just use emby but it seems no one cares and emby is out dated while even free apps are better like WTF. I dunno, whatever -
New app out just like Emby
FourCorners replied to FourCorners's topic in Non-Emby General Discussion
You can also setup only emby media server content to show and nothing else will show .. ONLY emby movies & series -
New app out just like Emby
FourCorners replied to FourCorners's topic in Non-Emby General Discussion
Is an addon made for this front end also it's 100% LEGAL I will help by posting here what you need if need be. I can make any addon you need or you can browse addons (100% LEGAL) by checking out https://stremio-addons.net/addons?categories=http+streams -
alex77777 started following "Skip Credits" Prompt for Movies in playlist
-
Ive notices that when the credits are marked for TV shows it will show a prompt to skip to the next episode or continue watching when the credits marker is hit. This is currently not the case for Movies, for example if you are watching a collection or playlist of movies and it hits a credits marker there is no prompt to skip the credits and go to the next movie you have to skip through the credits to get to the next item in the playlist. I would like to see a prompt similar to how TV shows are, allowing the option to skip over the marked credits for movies and go to the next movie or item in the playlist. Also it would be nice to have a skip recap marker as this would be useful for plugins like the IntroDB. Thanks
-
Self made ? Yes, but made in this app not Emby ?
-
Spotless track record...hey, records are made to be broken
-
It would be nice. But why spoil embys spotless track record of NOT releasing it after the next stable over the last 5 years. Im pretty certain I'll be dead before they release it! Krs Mark
-
New app out just like Emby
FourCorners replied to FourCorners's topic in Non-Emby General Discussion
Self made my boy. You can add many as you want and even add pics logos fanart whatever you want you can add HULU add whatever is in your emby brother. -
You can set it up to use just a remote for firestick if you want Most people dont even know this stuff exists can add a movie to emby from your firestick remote, but whatever. 2026-07-26 22-19-59.mp4
-
How long do restores take now? Is there any way to see status?
moviefan posted a topic in General/Windows
I rebuilt my emby server box today due to some random crashes I was having with it that I do not believe to be Emby related but needed to happen. I reinstalled and then used a backup to reimport my previous config but it's not coming up and seems to be taking forever to do the restoration. Other than Emby telling me that a restore is still in progress I have no idea what's happening. Is there some progress or logs I can look at to figure out what's going on? -
After the next stable is out do we actually get to see (the beginnings of) TVNext ?
-
Those rows you're showing - Apple, HBO etc, are they custom rows you've made in Emby that this app is picking up, or are they something this app is creating itself ?
-
Yes, I’ve been wanting something like this for a while too. I suppose seeing just (e.g.) MP3 or FLAC is a good minimal approach for many, but all my music is FLAC. I therefore also want to see (e.g.) 16/44 or 24/96, at a glance, without having to open “Stats for Nerds” or leave that visible the whole time. Even then, this doesn’t show bit-depth in the available info. I also similarly want to see more relevant info like this, but don’t need to see “everything” to be able to easily determine if the track is “standard” or “hi-res”. So, rather than just waiting for Emby to implement something, I had a friendly AI conversation and ended up with this (full screen): Here’s the JavaScript code for anyone interested in experimenting with it, for the web player (at your own risk): (function() { async function updateAudioInfo() { try { const sessions = await window.ApiClient.getSessions(); const session = sessions?.find(s => s.NowPlayingItem); if (!session) return; const item = session.NowPlayingItem; const audio = item.MediaStreams?.find(s => s.Type === "Audio"); if (!audio) return; const codec = (audio.Codec || "").toUpperCase(); const bitDepth = audio.BitDepth || ""; const sampleRate = audio.SampleRate ? (audio.SampleRate / 1000).toFixed(1) : ""; const el = document.querySelector('.videoOsd-audioInfo .mediaInfoItem'); if (el) el.textContent = `${codec} • ${bitDepth}-bit • ${sampleRate} kHz`; } catch (e) { console.error("Error:", e); } } const obs = new MutationObserver(updateAudioInfo); obs.observe(document.body, { childList: true, subtree: true }); })(); I have no idea if this is optimum code, but it seems to work ok for me. Alter this line to change the format of the displayed data: if (el) el.textContent = `${codec} • ${bitDepth}-bit • ${sampleRate} kHz`; To show other data will require more extensive changes, of course. Depending upon screen size, aspect ratio, screen view, font-size, etc., some CSS finessing may also be required to adjust any misalignment due to the extra space that the additional info takes up. I found that the text-centering may not align well and the time-remaining may wrap to the next line, but it seems fine, with no tweaking, for a landscape view., on my set-up. While this won't help for all the client apps, perhaps it's still useful to some, as an interim approach, for the web player?
