@ -4,4 +4,4 @@
from .container import FFprobeVideoContainer
from .stream import FFprobeSubtitleStream
__version__ = "0.2.7"
__version__ = "0.2.8"
@ -57,8 +57,8 @@ class FFprobeSubtitleDisposition:
def language_kwargs(self):
return {
"hi": self._content_type == "hearing_impaired",
"forced": self._content_type == "forced",
"hi": self._content_type == "hearing_impaired" or self.hearing_impaired,
"forced": self._content_type == "forced" or self.forced,
}
def __str__(self):
@ -1,5 +1,6 @@
# -*- coding: utf-8 -*-
class FeseError(Exception):
pass