mirror of https://github.com/morpheus65535/bazarr
17 lines
356 B
Python
17 lines
356 B
Python
|
# -*- coding: utf-8 -*-
|
||
|
from __future__ import unicode_literals
|
||
|
|
||
|
from ...property import Configurable
|
||
|
|
||
|
|
||
|
class VideoCodec(Configurable):
|
||
|
"""Video Codec handler."""
|
||
|
|
||
|
@classmethod
|
||
|
def _extract_key(cls, value):
|
||
|
key = value.upper().split('/')[-1]
|
||
|
if key.startswith('V_'):
|
||
|
key = key[2:]
|
||
|
|
||
|
return key.split(' ')[-1]
|