"""Generic constants for mediainfo cli.""" NUMERIC_FIELDS = { 'playtime_seconds', 'channels', 'bit_rate', 'sample_rate', 'resolution', 'bits_per_sample', 'file_size', 'height', 'width' } AUDIO_INFO_PARAM_FILTER = ( '--Inform=Audio;' 'playtime_seconds %Duration% * ' 'channels %Channel(s)% * ' 'codec %Format% * ' 'sample_rate %SamplingRate% * ' 'bits_per_sample %BitDepth% * ' 'bit_rate %BitRate%' ) IMAGE_INFO_PARAM_FILTER = ( '--Inform=Image;width %Width% * height %Height%' ) GENERAL_INFO_PARAM_FILTER = ( '--Inform=General;' 'container %Format% * ' 'mime_type %InternetMediaType% * ' 'file_size %FileSize%' ) CLI_FILTERS = [AUDIO_INFO_PARAM_FILTER, GENERAL_INFO_PARAM_FILTER]