ffmpeg-cli-wrapper
ffmpeg-cli-wrapper copied to clipboard
FFProbeStream is missing "color_space" attribute
Is your feature request related to a problem? Please describe. I need to ensure that some videos have a specific color space. To check this I would like to use ffprobe and if they dont have said color space then I have to take some other unrelated action.
Describe the solution you'd like Simply add the following elements to the FFmpegStream example from the raw ffprobe json:
{
"streams" : [ {
///.... irrelevant
"color_range" : "tv",
"color_space" : "reserved",
"color_transfer" : "arib-std-b67",
"color_primaries" : "bt2020",
///.... irrelevant
gson will take care of the rest
Describe alternatives you've considered Subclassing everything, but at that point I may aswell just not use this cli wrapper.