no log: update fese

This commit is contained in:
Vitiko 2023-07-23 23:39:35 -04:00
parent 4e50dc29a4
commit fdefb85b1f
3 changed files with 4 additions and 3 deletions

View File

@ -4,4 +4,4 @@
from .container import FFprobeVideoContainer
from .stream import FFprobeSubtitleStream
__version__ = "0.2.7"
__version__ = "0.2.8"

View File

@ -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):

View File

@ -1,5 +1,6 @@
# -*- coding: utf-8 -*-
class FeseError(Exception):
pass