mirror of https://github.com/morpheus65535/bazarr
11 lines
182 B
Python
11 lines
182 B
Python
|
# -*- coding: utf-8 -*-
|
||
|
from __future__ import unicode_literals
|
||
|
|
||
|
from ...property import Configurable
|
||
|
|
||
|
|
||
|
class VideoEncoder(Configurable):
|
||
|
"""Video Encoder property."""
|
||
|
|
||
|
pass
|