All Activity
- Past hour
-
6051594 joined the community
-
Ahlammeshal joined the community
-
MarioB13 joined the community
-
Here some log files. embyserver.txt embyserver-63923173689.txt embyserver-63923212800.txt hardware_detection-63923173758.txt
-
Leonel85 joined the community
-
Rain Keh joined the community
-
Gonzalo1717 joined the community
-
IboFafe started following Fairphoen5 emby app overheating phone
-
Hi, when i use emby for playback it overheats my phone , when enable play with external player (vlc player) it doesnt overheat. Android verion 15 Emby 3.5.36 and 3.5.45 is anyone having this issue? Cheers
-
And what firmware version do you have now on the G5?
-
Meanwhile, I can confirm that it works on my 425. Just tried with a movie which is h265 to transcode it to 720p 4Mbit. Without Transcode for x25 installed.: 8-9 fps. After installation: >100 fps.
-
yan15fred joined the community
-
Calomile joined the community
-
HLS transcoding for Apple's native player: fMP4 segments, and an HDR + SDR variant pair
Geordie replied to vdatanet's topic in Developer API
Why would you point it at Emby’s manifest though? The engine will ingest media files directly (mkv, avi, ts etc) so as far as the server is concerned, you’ll be direct playing via http. The engine will do what the server does (mkv to fMP4 + HLS to AVPlayer) directly on device and where not possible due to an older or unsupported codec, it will use ffmpeg software decode. Also, AVPlayer does DV to HDR to SDR tone mapping natively during playback. You don’t need to transcode to play DV on an SDR monitor (just need to skip the master playlist and play the media playlist directly instead). Lots of apps already use AetherEngine like Moonfin, Plezy, Silo, Sodalite… etc. I use Moonfin for Emby and Sodalite for Jellyfin. I do hope the web client gets better with HLS though as I prefer it to third party apps. It’s more power efficient on mobile. -
Jesusmayoral joined the community
-
Thanks, but doesn't seem to work for AppleTV
-
hooyou007 joined the community
-
Is this comming to fairphone 5 android 15 ? i am still on v3.5.36 and there arent any updates available on the app store.
-
And if you have a file with TrueHD, can you also confirm whether it plays fine (no freezing) with just an audio remux and not a full transcode? Thanks
-
Can you please do a quick test for me? You mentioned previously that if you play a file with a DTS track it freezes after 10 seconds, but if you then change the quality or do a double playback correction the it plays fine (just with crap video). Can you please start playback with one of these files, let it freeze, then drop the quality enough so that it transcodes and starts playback, then please send me the server log, ffmpeg remux log and ffmpeg transcode log for that test? I just want to try comparing something against the old logs. Thanks
- Today
-
Please add a feature where Emby will retain data
JokerJ420 replied to JokerJ420's topic in Windows & Xbox
Does it really matter how I have it setup? Maybe its the way I want it to be. I mean either way it should work right? Honestly I really think you guys arent seeing the points that are being made. This really has nothing to do with what I am saying... Things are being misidentified Emby is not going to the correct sections of the MovieDB and TVDB to correctly identify shows.... It goes to the movie section regardless if you have it setup as a TV show or movie... I showed the example in a previous post with images. Having to re-do all of your collections when moving things to a newer drive stinks Be nice to have a feature where you can mass select things to change images instead of having to do them singally. It shouldnt matter how you want your TV shows setup... -
Djun2k24 started following Serveur non fonctionnel
-
Bonjour à tous, ce matin impossible de me connecter. Ça m'indique que le serveur est introuvable et/ou peut-être même inexistant. Quelqu'un peut m'aider? J'ai redémarrer J'ai supprimé l'application et recommencer Ca ne fonctionne toujours pas
-
Tsch3ns started following Metadata not updated
-
Hello, after migrating my database from DS918 to DS425 and copying all movies to the 425, lots (if not all) movies miss metadata (pictures of actors), see attachment. I already tried to update the metadata of the whole library without success. I have to update each movie individually in order to get the missing data. Whats wrong here? Emby Premiere Server 4.9.5.0 Regards, Jens
-
Please add a feature where Emby will retain data
JokerJ420 replied to JokerJ420's topic in Windows & Xbox
Yes I have tried changing it but like I said, for some reason its only certain TV shows. Like He-Man is misidentified as the new movie and automatically uses the metadata from that for some reason. Try it.... Doesnt matter what setting you use when it is misidentifying shows and movies. I dont think you are following what I am saying. Go back to the posts I mentioned about the TVDB and MovieDB are not going to the correct sections of the site to identify the shows. Try it... I even included images. -
SamES started following Can't scroll down in Collections
-
That's fixed in the next release. Thanks
- 1 reply
-
- 1
-
-
Please add a feature where Emby will retain data
JokerJ420 replied to JokerJ420's topic in Windows & Xbox
My files are sorted in directories according to collection. Different collection, different directory. The movies are setup as movies and TV shows as TV shows. I have 14 different libraries. -
TV Show Status — TMDB-powered Returning/Ended/Cancelled badges for series
GrimReaper replied to Blueskies278's topic in Plugins
In Continue Watching row, Season Premieres get additional/duplicated badge top-left (seems like default position-default size), although setting is Extra Large Bottom centre and episode images themselves do not have that extra badge. Season Finales are okay. -
HLS transcoding for Apple's native player: fMP4 segments, and an HDR + SDR variant pair
vdatanet replied to vdatanet's topic in Developer API
Thanks for the pointer — I hadn't come across this one, and I went and read it properly, because I wanted it to be the answer. For my case it isn't, and I'd rather be precise about why than vague. Its README is explicit that a non-live remote .m3u8 handed to the loopback path gets rerouted onto the AVPlayer bypass: the bundled FFmpeg is built without network support, so the playlist can't be demuxed locally, and as they put it, remote HLS is AVPlayer's native domain anyway. That's a reasonable call rather than an oversight — but it means that pointed at an Emby transcoding manifest, the engine hands the same attribute-less #EXT-X-STREAM-INF to the same AVPlayer I'm already using, and the display stays in SDR for the same reason. The on-device remux is real; it applies when the source is something FFmpeg can open, not when it's already a remote HLS playlist. Where it would change things is by a route I hadn't considered, so the pointer was worth it anyway: skipping the HLS path altogether and direct-playing the original file. Once the CodecProfile uses the range spelling Emby actually compares against — the literal "HDR 10" from the MediaStream, with the space, on Property: "VideoRange" — Emby stops deciding to tone-map and offers direct play on these titles. I couldn't use that, because AVPlayer won't open an MKV. An engine that demuxes with FFmpeg and decodes with VideoToolbox can. So the value would be as a way around the manifest rather than through it, with the HDR coming from the original file untouched: 10-bit, and the Dolby Vision RPU still in place. I've written that down as a real option. It isn't a small one, to be fair to it. LGPL-3.0 with an App Store exception — well drafted, and it does cover the store's signing and re-linking restrictions, but only for the binary; the source obligations stay. Bundling FFmpeg. And on that path subtitle rendering moves out of the native tvOS picker and into the app's own overlay, which is a chunk of work I've already done once. It's a question for a later version. It's also why the two attributes are still what I'd rather have. VIDEO-RANGE and CODECS exist precisely so a client doesn't have to carry its own demuxer to find out what it's being sent — any client using the platform player benefits, and only the ones shipping FFmpeg can route around their absence. On "Emby's HLS implementation still needs some minor improvements" — which ones did you hit? The two I ran into are that the range value loses its space somewhere between PlaybackInfo and the transcoding URL, so the manifest generator never matches it; and that putting the space back by hand does produce VIDEO-RANGE=PQ, but then the segment endpoint answers 400. I owe this thread the full measurements on both and will post them. If you hit the same things from a different pipeline, or something else entirely, I'd like to know — you've clearly looked at this more recently than most. -
HLS transcoding for Apple's native player: fMP4 segments, and an HDR + SDR variant pair
Geordie replied to vdatanet's topic in Developer API
@vdatanet Have you ever thought about using the open source AetherEngine? It does on-device remuxing to specs-complaint Apple-friendly HLS and uses the platform-native AVPlayer with all the privileges that entails. https://github.com/superuser404notfound/AetherEngine That said, Emby’s HLS implementation still needs some minor improvements (it’s way better than when i last tried it years ago). Any improvements would be welcome. -
HLS transcoding for Apple's native player: fMP4 segments, and an HDR + SDR variant pair
abat119 replied to vdatanet's topic in Developer API
Just wanted to say a huge thanks for this! I only ever use the native player on my Apple TV and the emby implementation - while pretty good - is missing a few things when it comes to 4K playback. Regarding iOS playback - I use the safari web interface and that uses Apple's native player on iPad / iPhone - so that works and looks great. No need for a seperate app - keep focus on making this the best Native Apple TV Emby client (Emby team - maybe implement this app into the mainstream one? With blessings from the author of course ) -
Upgraded 4.9.3 -> 4.9.5 (Artwork and data for movies disappearing on scheduled scans?)
mike3821 replied to mike3821's topic in Linux
Here is the log file. I just rolled back to 4.9.3.0 after this. emby-4.9.5.0.txt -
TV Show Status — TMDB-powered Returning/Ended/Cancelled badges for series
GrimReaper replied to Blueskies278's topic in Plugins
Minor glitch: Ended/Canceled/Returning shows get both Season Premiere and Season Finale badges on first/last episode of each season (single- or multi-season shows). Still Airing shows do not get Season Finale on any last episode of previous completed seasons (but do get Season Premiere badge on each first episode of all seasons). Another possible improvement: maybe last episode of the last season for Ended and Canceled shows should get Series Finale badge instead of only Season Finale? -
If this is asked my apologies since searching the terms would not get me quickly to my question. My question is, is there any way to treat depisodes with the "Live" setting just like "New". Example, under live you can limit recordings to "New". However, my guide provider and I'm assuming others do the same, they send "Live" for live events. If you select "New" it does not record any "Live" or "repeat" or no designation. If you want the live versions, you have remove the "Live" option and it records all and the only way to limit to a specific time is to select the around time option. So in the case of the two below I would say around 6AM. The problem is if there is a live version of that show at different times they you only get the one.
-
vdatanet started following iOS 26.5 broke safari web playback
-
I have worked through all the steps on External Connections in the linked guide. I've tried enabling UPnP on my router with automatic port mapping enabled on Emby server, but that didn't work - still couldn't connect outside my home network. So I disabled that and tried manual port forwarding - set this up as per the instructions, verified external IP address etc, but still no success. Whatever I do, I cannot access Emby outside my home network
-
@LukeCan you take a look at this?
-
Hi Luke Thanks for the reply. For DV 5 ffmpeg -i file.mkv -c copy -tag:v dvh1-strict unofficial file.mp4 For DV 8.x ffmpeg -i file.mkv -c copy -tag:v hvc1 -strict unofficial file.mp4 -strict -2 also works Note the video tag difference between P5 & P8.x For HLS, the master manifest needs to be reflect the different profiles (8.x requires supplemental-codecs where as 5 doesn’t) Happy to test and/or help in anyway!
