blumamba Posted February 4 Share Posted February 4 I don't know if you can add a section/modify while showing the stats for nerds in the ATV (Shield TV Pro) to display currently playing HDR/DV material instead of showing what is supports. Meaning where is shows supports "hdr10/DV" it would show "HDR Type: HDR10 bla bla" or "HDR Type: DV" I think I read somewhere this would have to be done by exo devs, but cant remember for sure and thus the request. Link to comment Share on other sites More sharing options...
FrostByte Posted February 4 Author Share Posted February 4 (edited) The server is going to have to be updated to recognize DV in a file first before any clients will be able to show this Edited February 4 by FrostByte Link to comment Share on other sites More sharing options...
jsc1205 Posted March 7 Share Posted March 7 Plex has finally been able to identify movies with Dolby Vision, so hopefully Emby can now do the same. This is currently working on the web version of Plex and has not yet been pushed to clients. See example screenshot. 5 Link to comment Share on other sites More sharing options...
joechilds Posted April 3 Share Posted April 3 +1 for this please! 1 Link to comment Share on other sites More sharing options...
rbjtech Posted April 8 Share Posted April 8 (edited) I gave up waiting for ffmpeg - and modified all my container's (automatically) with the correct codec titles with MediaInfo CLI .. and mkvpropedit to write the detected data - no need to remux that way. It's not the end solution though, as I can't sort or filter on it - but at least it displays what I need to see and thus know what to expect to happen on my TV and AVR when I press play ... Edited April 8 by rbjtech 1 Link to comment Share on other sites More sharing options...
Cheesegeezer Posted May 16 Share Posted May 16 (edited) Lets mark this as in-progress dunno why my privileges have been removed to do this. @CBers @Abobadercan you mark this as in-progress please Edited May 16 by Cheesegeezer 7 1 Link to comment Share on other sites More sharing options...
Cheesegeezer Posted May 16 Share Posted May 16 I would like to add that this is only for updating the display titles, we can’t mess with anything else but, it will achieve the goal of displaying the upto date formats 1 Link to comment Share on other sites More sharing options...
jsc1205 Posted May 16 Share Posted May 16 @CheesegeezerI'm not seeing this MediaInfo plugin under the catalog....am I missing something? Link to comment Share on other sites More sharing options...
Cheesegeezer Posted May 16 Share Posted May 16 1 minute ago, jsc1205 said: @CheesegeezerI'm not seeing this MediaInfo plugin under the catalog....am I missing something? In progress fella only started it a few hours ago. 2 Link to comment Share on other sites More sharing options...
FrostByte Posted May 16 Author Share Posted May 16 1 hour ago, Cheesegeezer said: Lets mark this as in-progress dunno why my privileges have been removed to do this. @CBers @Abobadercan you mark this as in-progress please Done 1 1 Link to comment Share on other sites More sharing options...
neik Posted May 17 Share Posted May 17 Brilliant idea, cheese. Will this also work on Linux? Link to comment Share on other sites More sharing options...
Cheesegeezer Posted May 17 Share Posted May 17 46 minutes ago, neik said: Brilliant idea, cheese. Will this also work on Linux? I cant see any reason why not. I’m using MediaInfoCLI commands and got some initial good info from a debian/ubuntu developer(sorry i dunno the difference) 1 Link to comment Share on other sites More sharing options...
Junglejim Posted May 17 Share Posted May 17 (edited) 1 hour ago, Cheesegeezer said: I cant see any reason why not. I’m using MediaInfoCLI commands and got some initial good info from a debian/ubuntu developer(sorry i dunno the difference) This looks cool! Can't wait to give this a spin. I'm a bit OCD when it comes to stream title tags and this would be perfect. As for debian/ubuntu, Ubuntu is based off Debian so not much difference at all. My fav OS "MX Linux" is also Debian based as is my NAS "OMV". I'm sure we could run this in Linux. I know there is a mediainfo docker available too so maybe I could run this solely from my NAS (which is were Emby is installed via docker).. That would be cool! Edited May 17 by Junglejim Link to comment Share on other sites More sharing options...
ebr Posted May 17 Share Posted May 17 12 hours ago, FrostByte said: Done I removed it because we use this to track things being worked on in the core. This plug-in is fine as a stop-gap but is not the end result we'll be looking for. Thanks. 1 Link to comment Share on other sites More sharing options...
Cheesegeezer Posted May 17 Share Posted May 17 1 minute ago, ebr said: I removed it because we use this to track things being worked on in the core. This plug-in is fine as a stop-gap but is not the end result we'll be looking for. Thanks. are you waiting for FFmpeg/probe to update? Link to comment Share on other sites More sharing options...
ebr Posted May 17 Share Posted May 17 Just now, Cheesegeezer said: are you waiting for FFmpeg/probe to update? That would definitely allow us to do this. Also, when we have this data available, we may end up creating new properties on the item. Link to comment Share on other sites More sharing options...
rbjtech Posted May 17 Share Posted May 17 (edited) 15 hours ago, Cheesegeezer said: I would like to add that this is only for updating the display titles, we can’t mess with anything else but, it will achieve the goal of displaying the upto date formats You could also write the updated title back to the source file header using mkvpropedit should the user wish to have that option. This is what my script does. Not sure of the situation with other containers - I presume there are MP4 utilities for this, mp4Box maybe ? The main advantage of this is the data is then stored in the source file (per internal track) - so on an emby rebuild (for example) then the title is just re-imported - as it does today with the current titles. Edited May 17 by rbjtech Link to comment Share on other sites More sharing options...
Cheesegeezer Posted May 17 Share Posted May 17 Spent a little more time this evening on this. got all the info and I’m starting to play with it. CLI programs are soooo fussy on the syntax wasted about 2 hrs debugging and fining out that i had something unnecessary in the command lol grrrrrr. Need to do some conditional string formatting, and then i will test with my only tester!! should be done pretty quickly i think. 2 Link to comment Share on other sites More sharing options...
chef Posted May 18 Share Posted May 18 Hey @Cheesegeezer check this out LOL! I use it in auto organize to test the resolution of video info... Dunno if you can use it, since you are calculating possible formats.... I know this thread is about Audio, but maybe useful... or someday be useful. I went through and calculated all the square roots of all the possible diagonal pixel ratios on modern (and not so modern) tv formats, and came up with this little treat of a method. Works like a charm too. It assumes that nothing is interlaced anymore. LOL! private string ApproximateScreenResolution(int width, int height) { //Calucate the diagonal of a rectange/square var diagonal = Math.Round(Math.Sqrt(Math.Pow(width, 2) + Math.Pow(height,2)), 2); if (diagonal <= 800) return "480p"; //4:3 if (diagonal > 800 && diagonal <= 1468.6) return "720p"; //16:9 if (diagonal > 1468.6 && diagonal <= 2315.32) return "1080p"; //16:9 or 1:1.77 if (diagonal > 2315.32 && diagonal <= 2937.21) return "1440p"; //16:9 if (diagonal > 2937.21 && diagonal <= 4405.81) return "2160p"; //1:1.9 - 4K if (diagonal > 4405.81 && diagonal <= 8811.63) return "4320p"; //16∶9 - 8K return "Unknown"; } 1 Link to comment Share on other sites More sharing options...
SikSlayer Posted May 18 Share Posted May 18 Can't wait to see this Cheesegeezer! Link to comment Share on other sites More sharing options...
FrostByte Posted May 18 Author Share Posted May 18 I loaded the mediainfo package on Synology DSM7. I hope this will work Link to comment Share on other sites More sharing options...
rbjtech Posted May 18 Share Posted May 18 6 hours ago, chef said: Hey @Cheesegeezer check this out LOL! I use it in auto organize to test the resolution of video info... Dunno if you can use it, since you are calculating possible formats.... I know this thread is about Audio, but maybe useful... or someday be useful. I went through and calculated all the square roots of all the possible diagonal pixel ratios on modern (and not so modern) tv formats, and came up with this little treat of a method. Works like a charm too. It assumes that nothing is interlaced anymore. LOL! private string ApproximateScreenResolution(int width, int height) { //Calucate the diagonal of a rectange/square var diagonal = Math.Round(Math.Sqrt(Math.Pow(width, 2) + Math.Pow(height,2)), 2); if (diagonal <= 800) return "480p"; //4:3 if (diagonal > 800 && diagonal <= 1468.6) return "720p"; //16:9 if (diagonal > 1468.6 && diagonal <= 2315.32) return "1080p"; //16:9 or 1:1.77 if (diagonal > 2315.32 && diagonal <= 2937.21) return "1440p"; //16:9 if (diagonal > 2937.21 && diagonal <= 4405.81) return "2160p"; //1:1.9 - 4K if (diagonal > 4405.81 && diagonal <= 8811.63) return "4320p"; //16∶9 - 8K return "Unknown"; } Nice ! Hi @chef - up to Cheese of course, but we've also been discussing HDR and the notorious Dolby Vision flavours as well - mediaInfo picks them all up - and thus can incorporate those into the display as well. From mediainfo generally, there are huge number of possible values, so the trick is going to be what to identify as useful / needed. From a personal perspective, it's just the 'extra' layer of details not available from ffmpeg such as Atmos/DTS:X etc and the level of HDR/DV plus the video bitrate. 1 Link to comment Share on other sites More sharing options...
softworkz Posted May 18 Share Posted May 18 (edited) As I had mentioned somewhere before (as that it will come), DV data is available from ffprobe since 5.0: Just to let you know that it's not far away anymore.. Edited May 18 by softworkz 2 1 Link to comment Share on other sites More sharing options...
FrostByte Posted May 18 Author Share Posted May 18 20 minutes ago, softworkz said: As I had mentioned somewhere before (as that it will come), DV data is available from ffprobe since 5.0: Just to let you know that it's not far away anymore.. I believe there is also a patch for HDR10+ that been posted a couple times in the forum. Link to comment Share on other sites More sharing options...
rbjtech Posted May 18 Share Posted May 18 (edited) 24 minutes ago, softworkz said: As I had mentioned somewhere before (as that it will come), DV data is available from ffprobe since 5.0: Just to let you know that it's not far away anymore.. Useful to know - thanks @softworkz - I'll check ffprobe v5 - as if it contains the Dolby Atmos and DTS sub-types as well and emby plan to use/hold this data, then this could make the Plugin largely unnecessary unless you want a specific type of formatting on your title entries for each track. Edited May 18 by rbjtech Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now