rosenbjerg / FFMpegCore

A .NET FFMpeg/FFProbe wrapper for easily integrating media analysis and conversion into your C# applications
MIT License
1.61k stars 289 forks source link

Detecting HDR video #393

Open streamzyuk opened 1 year ago

streamzyuk commented 1 year ago

I am trying to detect if a video is hdr. ffprobe gives you a properties : color_space=bt709 color_transfer=bt709 color_primaries=bt709

But the wrapper does not have these properties or I can't find them

rosenbjerg commented 1 year ago

Hi, those properties are currently not supported

streamzyuk commented 1 year ago

Thank you for your response. I have seen that at some point you have merged it but current code does not include it.

I have added this to the spurce code and it works for now.

Did you have any issues with this.

JoeSchulte commented 6 months ago

I am looking for the HDR color space info as well. I'm afraid I might have to go back to parsing the FFProbe data myself without it.