"""Generic constants for mediainfo cli.""" OUTPUT_MAPPING = { 'General': { 'Format': 'container', 'InternetMediaType': 'mime_type', 'FileSize': 'file_size_bytes' }, 'Audio': { 'Duration': 'duration', 'Channels': 'channels', 'Format': 'codec', 'SamplingRate': 'sample_rate', 'BitDepth': 'bits_per_sample', 'BitRate': 'bit_rate' } } NUMERIC_FIELDS = ( 'duration', 'channels', 'bit_rate', 'sample_rate', 'bits_per_sample', 'file_size_bytes' )