mirror of
https://github.com/morpheus65535/bazarr
synced 2024-12-23 16:23:41 +00:00
Fixed network issues from preventing Bazarr startup.
This commit is contained in:
parent
332a426b0d
commit
d384b9307b
1 changed files with 2 additions and 1 deletions
|
@ -24,7 +24,6 @@ from subliminal_patch.subtitle import Subtitle
|
||||||
from subliminal_patch.core import get_subtitle_path
|
from subliminal_patch.core import get_subtitle_path
|
||||||
from subzero.language import Language
|
from subzero.language import Language
|
||||||
from subliminal import region as subliminal_cache_region
|
from subliminal import region as subliminal_cache_region
|
||||||
from deep_translator import GoogleTranslator
|
|
||||||
from dogpile.cache import make_region
|
from dogpile.cache import make_region
|
||||||
import datetime
|
import datetime
|
||||||
import glob
|
import glob
|
||||||
|
@ -442,6 +441,8 @@ def subtitles_apply_mods(language, subtitle_path, mods):
|
||||||
|
|
||||||
|
|
||||||
def translate_subtitles_file(video_path, source_srt_file, to_lang, forced, hi):
|
def translate_subtitles_file(video_path, source_srt_file, to_lang, forced, hi):
|
||||||
|
from deep_translator import GoogleTranslator
|
||||||
|
|
||||||
language_code_convert_dict = {
|
language_code_convert_dict = {
|
||||||
'he': 'iw',
|
'he': 'iw',
|
||||||
'zt': 'zh-cn',
|
'zt': 'zh-cn',
|
||||||
|
|
Loading…
Reference in a new issue