mirror of
https://github.com/morpheus65535/bazarr
synced 2024-12-26 17:47:20 +00:00
8086bce5c4
* fese library was updated * mergerfs_mode support was dropped. Too much false positives * extended codec support (two new codecs added: webvtt and mov_text) * disable conversion to srt by default
32 lines
371 B
Python
32 lines
371 B
Python
# -*- coding: utf-8 -*-
|
|
|
|
class FeseError(Exception):
|
|
pass
|
|
|
|
|
|
class ExtractionError(FeseError):
|
|
pass
|
|
|
|
|
|
class InvalidFile(FeseError):
|
|
pass
|
|
|
|
|
|
class InvalidStream(FeseError):
|
|
pass
|
|
|
|
|
|
class InvalidSource(FeseError):
|
|
pass
|
|
|
|
|
|
class ConversionError(FeseError):
|
|
pass
|
|
|
|
|
|
class LanguageNotFound(FeseError):
|
|
pass
|
|
|
|
|
|
class UnsupportedCodec(FeseError):
|
|
pass
|