Fix some stream info overrides

This commit is contained in:
JonnyWong16 2017-03-25 13:25:45 -07:00
parent ca093875b4
commit f3070763fa
4 changed files with 53 additions and 12 deletions

View file

@ -58,6 +58,14 @@ MEDIA_FLAGS_VIDEO = {'avc1': 'h264',
AUDIO_CODEC_OVERRIDES = {'truehd': 'TrueHD'}
VIDEO_RESOLUTION_OVERRIDES = {'sd': 'SD',
'480': '480p',
'576': '576p',
'720': '720p',
'1080': '1080p',
'4k': '4k'
}
AUDIO_CHANNELS = {'1': 'Mono',
'2': 'Stereo',
'3': '2.1',