Leaderboard
Popular Content
Showing content with the highest reputation on 05/29/22 in all areas
-
This is for Emby Theater for Tizen and iOS. It seems all these recent updates are to “clean up” the OSD etc. Well, there is tons of room now that you have removed the poster from the video details screen, so can we please get the “Ends at” time back on details? Makes absolutely no sense that that it was removed in the first place. I realize it can be seen after the video is playing by pressing down to get to video info but the whole point is to see if you have time to watch the video BEFORE you start it! Seems pretty straightforward. thx!3 points
-
Bingo! Thank you SOOOOOO very much. You guys rock! Have a great weekend!3 points
-
I encode it with exact audio copy (EAC), the mistake i made is that i choose to create mp3 id3 v.2.3 tag for the FLAC, and firefox don't like this. Removing the id3 tag resolve the problem. Thanks again for your great job with Emby2 points
-
The button wasn't in place for the ATV app as of the last stable release, but it's in the current beta.2 points
-
Okay, you need to go into services and start the Emby service with a userid and password that are exactly the same as one on your NAS and has read/write permissions to your files, folders, shares, etc. When running as a service Emby uses the account which started the service to gain access. By default, all Windows services start with a system account which won't have access to your NAS2 points
-
You should check Vantage Point plugin:2 points
-
@ebrEin gute Option zur Überbrückung bei solchen Problemen wäre eine Funktion, "Abspielen mit....." wo man den externen Player direkt auswählen könnte. Und nicht extra in die allgemeinen Einstellungen gehen muss, und dort den externen Player aktivieren, und später wieder deaktivieren muss.2 points
-
I’m very excited to try the native M1 server software on my Mac mini. The Rosetta version works fine but I’m super curious about possible performance improvements.2 points
-
Here are 4 pre-rolls I created using Motion Array templates. (I have a subscription.) Emby-Dark-Tear.mp4 Emby-Explosion.mp4 Emby-Fire-Explosion.mp4 Emby-Space-Trails.mp41 point
-
I have some automations in home assistant and one of them is one turns the lights off when we are watching a movie, turns on some dimm lights when pause and turns on all lights at stop. So this is the request: A way to recognize the end credits on the movies and to report what chapter is playing to homeassistant. That way an automation can be triggered when the end credits scene is playing, like turn on dimm lights. I'm aware that it appears to be 2 request in one, but really only chapter reporting is the one needed, end credit detection could be a nice to have thing. To do the first is needed to recognize the end credits for the movies, for this the new intro detect feature could be used (i already voted up the FR for end credits detection). But as i said before this feature is not that needed since most of the movies well ripped already have a chapter marker for the credits scene although most of the time they don't have the title "EndCredits" only the time marker for the chapter, but that's easy to fix editing the chapters. However the real feature request here is for emby to report what chapter is playing that could be via a new WebHook event or to make emby to report what chapter is currently playing as an attribute on Home Assistant. Currently there is so much attributes passed on to HomeAssisant so i hope that adding current chapter is not that difficult to add. (i added a little mockup to illustrate what i'm referring to)1 point
-
If you sent your logs to ebr and Luke try tagging them and ask them what if there's anything they saw. The mods are users just like yourself and are not part of the Emby staff. Like Audiomixer we try to help as much as we can while moderating the forums, but we don't always have the answer.1 point
-
not sure if this has been mentioned yet or not but when a show is paused, the clock in the top right is also paused.1 point
-
It's a type of HDR, but it isn't HDR10. I think it should replace it, maybe rbjtech has an opinion These are the HDR formats I'm aware of DV5,7,8, etc (DV7 and DV8 have a DV and HDR10 layer) HDR10/HDR10+ HLG Hybrid Log Gamma: everything you need to know about HLG HDR | TechRadar1 point
-
Aha! That is what it was! Installed the latest beta and now its there. Thank you!! The plugin works great, thank you for your hard work on this!1 point
-
1 point
-
So i think i can release this tomorrow. @FrostByte i will add in some more logging but at info level, not debug. So its easy to see comparisons. thanks everyone for your feedback it’s really appreciated, believe me. if you have anything else to add now is the time!!1 point
-
Thank you very much this altleast allows me to get it larger then the max preset emby sizes (that were just small) i went with a very dumbed down version of your custom css: /* video subtitles */ .videoPlayerContainer > div > div > div { font-size: 60px !important; color:white !important; text-shadow: 0px 0px 0px #fff !important; /* shadow right, bottom, blur, color */ font-family:Arial !important; top:-12px !important; /* move up (top negative) or down (top positive) Usually not needed. */*/ } Its working perfectly for what i want im now just adjusting the font-size to my "perfect" size1 point
-
This was kinda bugging me so I decided to test it with a fresh CentOS Stream 9 VM. The default crypto policy is definitely too strict and causing this problem. The workaround is as simple as changing the policy and rebooting. $ update-crypto-policies --set LEGACY $ reboot I tried using the DEFAULT policy first and got the same error as the OP for plug-in installation. Changing policy to LEGACY allowed plug-in installation and then changing policy back to DEFAULT would trigger the errors again for subsequent plug-in installs.1 point
-
So the font-family for Emby is: font-family: "Roboto", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol"; If your system does not have Roboto, then it goes to the next one on the list. Each font will look different and have slightly different sizes. If that is happening, then all the fonts in the site would change. It seems like you would notice that. So that's probably not it. But check your windows font directory or do a browser inspect and see what font is active. If you are missing some font, you can usually go find it and add it. Of course any user would not bother doing that. The idea here is that whatever Windows or Mac has normally installed, is what is used. So usually you don't need to do anything. I mention in case somehow some of your Windows fonts were deleted by someone. === Tweaking your css to force it to do what you want: The .css for the video subtitles is: .videoPlayerContainer > div > div > div If you wanted to override all the variable settings, you could put this in custom css and then the subtitles would always do whatever you set here. This defeats the admin controls, which is not ideal. /* video subtitles */ .videoPlayerContainer > div > div > div { font-size: 22px !important; color:yellow !important; text-shadow: 2px 2px 1px #fff !important; /* shadow right, bottom, blur, color */ font-family:Arial !important; top:-12px !important; /* move up (top negative) or down (top positive) Usually not needed. */ word-spacing: 0.6em; /* optionally increase spacing between words. 0.1 movement is noticable */ background-color:#333; /* dark gray - you can pick any color */ padding: 4px 20px !important; /* top/botton, left/right extra padding for background color */ opacity:0.9; /* optional see through the subtitles */ border: 1px #446587 solid; /* optional border around the background color */ border-radius: 0.3em !important; /* optional change in rounded corners of background. It is already set to 0.25em. */ } If you make any css updates, you may need to clear the browser cache before you see the changes. Usually !important changes are recognized without a browser cache clear, but it varies. === .srt files can force a font size, color changes, but it's sort of obvious if you look at the file. Normally that is only done for the subtitle creator putting a credit at the start of the film. === Finally be aware, once you take the first step to custom css, it is like jumping down the rabbit hole. The passage of time will vanish and you will start to lose track of what is large or small. Ha! Hope that helps.1 point
-
Are you running Emby as a service?1 point
-
It's not a known issue, it's just the way that it works. It's going to try and go as fast as your system will allow.1 point
-
Great, the resolution of movie is correctly displays with this version. Thanks a lot @Cheesegeezer1 point
-
Im surprised i could not find this Feature Request already.. and i searched assuming it would have. It would be awesome if there were a kids mode toggle button to quickly hide grownup content, so you can give a kid a remote without worry. Of course there would need to be a config menu for the kids mode, set the ratings / folder / libraries to be included/excluded from kids mode. Ability to set a pin code to exit kids mode. some people dont have kids, only have other people's kids visit, family ect. there is no reason to create an account/user for these situations, but it would be nice to just hit a kids mode button, and not have to babysit the remote. local accounts are only local so kids mode toggle would also reduce the need for creating dummy forum accounts for another emby connect user.1 point
-
Hi, so, here is the latest log, after trying your suggestion above. And with a further trial of an other file. Issue is still existing… Thanks for supporting it + BR Peter embyserver.txt1 point
-
This might be the result of Centos 9 hardening and not necessarily .Net. Would changing the systemwide crypto policy to LEGACY be a workaround? https://access.redhat.com/documentation/en-us/red_hat_enterprise_linux/8/html/security_hardening/using-the-system-wide-cryptographic-policies_security-hardening Linked from here: https://serverfault.com/questions/1095898/how-can-i-use-a-legacy-ssh-rsa-key-on-centos-9-stream Edit: Well, after more reading and even if this ends up being the workaround there are big differences between rel 8 and 9. The same policy is stricter in 9 so IF this were to be a solution it would have to be more explicit in how the policy is defined. https://access.redhat.com/documentation/en-us/red_hat_enterprise_linux/9/html/security_hardening/using-the-system-wide-cryptographic-policies_security-hardening1 point
-
We were forced to because of this issue in Live TV plugins since the backends don't need this flag1 point
-
1 point
-
Yeah i noticed the Title being "sticky" and covering text. happens with all plugins now. Not my doing by i'll see about removing it somehow. can you check in programdata/config/mediaInfo.xml and see if there is anything in the processedlist. Can you also double check that you are using MediaInfoCLI and not GUI, as this will not work. If you can enable debug logging. Load this badboy up. Restart server and then send me the log on PM if you wish to keep it private. I'll see whats going on. Cheers Fella @Ferwin29 try this dll, this should address any resolution issues. Let me know how you get on pleae Emby.MediaInfo.dll1 point
-
1 point
-
thanks, i have found what it was. we had a script to move the links and tags up below the info shown in my screenshot. was working fine before 4.7.1 but causes this issue now. reloading a fresh copy of the system folder from github has corrected everything1 point
-
I'll backport the progress update functions from 7.x. There are many improvements and I think this could solve the issue.1 point
-
1 point
-
1 point
-
Yea I also can't reproduce this, I'm running a "MX Linux" OS. My server is OMV running 4.7.1.0. Tested: Firefox: 100.0.2 (64-bit) Chrome: Version 102.0.5005.61 (Official Build) (64-bit) I hope you get it sorted out, sorry I can't help any further.1 point
-
1 point
-
Strange. I can't reproduce on Chrome or Firefox on mulitple platforms. I guess Brave doesn't surprise me because that browser always seems to have it's own unique issues. I'll do some Safari testing.1 point
-
1 point
-
I try with Chrome and Edge, and it works... The problem is for firefox... and i like it... this is the end... my only friend... ???? Thx FrostByte1 point
-
The client is webbrowser firefox And the the server log here embyserver.txt1 point
-
Please try 7.0.2-build 12 or higher. As mentioned, the issue is not unique to Various Artists". Actually, all records (even Album records) could be affected and I hope yours is actually related to that matter. Theoretically, the pattern of your bug report could match. Fingers crossed...1 point
-
New version available 7.0.2-build 12: delta changelog: restructure music db sync several minor fixes for updated content add database vacuum option fix multiversion content (update) sync fix admin issue (for regular progress update mode) Comment: This version forces a complete database resync! due to -> Music DB structure has COMPLETLY changed. I hope it will fix the pending issues. Also there are many changes under the hood, not addressing any specific issue but it should address many edge case problems. Actually the code for movies, musicvideos tvshows is even more unified. -> fixing issues on a single spot affects now all three types of content. While rewriting the code, I already found several problems which are fixed for one type of content but not for others. The vaccum db option optimizes/shrinks the db size -> option available under advanced settings. Large databases (> 100.000) could benefit.1 point
-
@doz88, the emby server log file will contain the plugins path. Try just deleting the .dll files for those plugins manually. Please let us know if this helps. Thanks.1 point
-
Those need to be separate libraries in order to be shown as separate Home Screen sections. Edit: Further on, it would be more advisable to post questions in the appropriate forum sections, as it is likely that answers will somewhat differ based on your client app/server platform, so you'd get your queries answered in a more relevant manner.1 point
-
Do you want it to stretch the video so everyone looks fat, or just chop the top and bottom off so everyone is walking around with no head or feet?1 point
-
1 point
-
I you mean the backdrop, no thanks, am a big fan of backdrops. Personally, I do all I can to remove stuff that gets in the way of backdrops (well, in a browser anyway).1 point
-
i think that will be ok if we see the app on WW Store.. if any chance to make it at this way ? like payment to use that app or something1 point
-
Hi, I agree with EFEris, a "premiere only" option is better then none and saying "working on it" is way too often used in this Forum, but without delivering results (Sorry, sounds hard, but that's how I feel about it) And Samsung is the most common TV Brand in the EU, there is no doubt about it. Maintaining is a point, but to be honest, I can not imagine, that this will get out of control, Tizen is Linux based and u got a client for US already, as a plus, just quit the support of some useless old devices like a PS3? which will be used by a max of 1 % ? And in my opinion it's a waste of energy using such a power consuming device for streaming. Anyways, we got ur point, but ignoring the biggest Brand of TV Manufacturers is not a good idea I guess. And of course we could use Roku, Fire-tv etc. but its another device, another remote etc. pp And if it's about a few euros once, everyone can make it's own decision.1 point
-
I fully understand this, maintain infrastructure costs time and money. I have no idea about the userbase emby has but looking at the tv market share ( https://www.flatpanelshd.com/news.php?subaction=showfull&id=1645428019 no idea if this source is reliable) it looks like there is samsung then nothing then lg. I would say having a "premiere only" option would be better then having no option. Anyway I don't want to bother you further, just saying a clear answer telling us not to except with a official client this decade is also fine for me. Just clear communication, "working on it" for several years doesn't make anyone happy I think. thanks for your great software1 point
