"""Mediainfo CLI parameters value.""" AUDIO_INFO_PARAM_FILTER = ( '--Inform=Audio;playtime_seconds %Duration% * channels %Channel(s)% * ' 'codec %Codec% * bitrate %BitRate% * sample_rate %SamplingRate% * ' 'resolution %Resolution% * bit_depth %BitDepth% * ' 'bits_per_sample %BitDepth%' ) GENERAL_PARAM_FILTER = ( '--Inform=General;container %Format% * mime_type %InternetMediaType% * ' 'file_size %FileSize%' ) CLI_FILTERS = [AUDIO_INFO_PARAM_FILTER, GENERAL_PARAM_FILTER]