summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorVitiko <[email protected]>2023-05-04 19:15:35 -0400
committerVitiko <[email protected]>2023-05-04 19:15:35 -0400
commite83f37d42ec3a8141ca6b5ca487d0ab200e59cb5 (patch)
treeed055f1b062639c53d2a5cadd680e4e67819d702
parent09f0a2783377e366a6a75d60ff57775abe244596 (diff)
downloadbazarr-1.2.2-beta.1.tar.gz
bazarr-1.2.2-beta.1.zip
SuperSubtitles provider: fix hungarian subtitles downloadsv1.2.2-beta.1
-rw-r--r--libs/subliminal_patch/providers/utils.py45
-rw-r--r--tests/subliminal_patch/test_supersubtitles.py24
2 files changed, 52 insertions, 17 deletions
diff --git a/libs/subliminal_patch/providers/utils.py b/libs/subliminal_patch/providers/utils.py
index ea8e411e6..f06f75e34 100644
--- a/libs/subliminal_patch/providers/utils.py
+++ b/libs/subliminal_patch/providers/utils.py
@@ -121,6 +121,33 @@ def is_episode(content):
return "episode" in guessit(content, {"type": "episode"})
+_ENCS = ("utf-8", "ascii", "iso-8859-1", "iso-8859-2", "iso-8859-5", "cp1252")
+
+
+def _zip_from_subtitle_file(content):
+ with tempfile.NamedTemporaryFile(prefix="spsub", suffix=".srt") as tmp_f:
+ tmp_f.write(content)
+ sub = None
+ for enc in _ENCS:
+ try:
+ logger.debug("Trying %s encoding", enc)
+ sub = pysubs2.load(tmp_f.name, encoding=enc)
+ except Exception as error:
+ logger.debug("%s: %s", type(error).__name__, error)
+ continue
+ else:
+ break
+
+ if sub is not None:
+ logger.debug("Identified subtitle file: %s", sub)
+ zip_obj = zipfile.ZipFile(io.BytesIO(), mode="x")
+ zip_obj.write(tmp_f.name, os.path.basename(tmp_f.name))
+ return zip_obj
+
+ logger.debug("Couldn't load subtitle file")
+ return None
+
+
def get_archive_from_bytes(content: bytes):
"""Get RarFile/ZipFile object from bytes. A ZipFile instance will be returned
if a subtitle-like stream is found. Return None if something else is found."""
@@ -134,23 +161,7 @@ def get_archive_from_bytes(content: bytes):
return zipfile.ZipFile(archive_stream)
logger.debug("No compression format found. Trying with subtitle-like files")
-
- # If the file is a subtitle-like file
- with tempfile.NamedTemporaryFile(prefix="spsub", suffix=".srt") as tmp_f:
- try:
- tmp_f.write(content)
- sub = pysubs2.load(tmp_f.name)
- except Exception as error:
- logger.debug("Couldn't load file: '%s'", error)
- else:
- if sub is not None:
- logger.debug("Identified subtitle file: %s", sub)
- zip_obj = zipfile.ZipFile(io.BytesIO(), mode="x")
- zip_obj.write(tmp_f.name, os.path.basename(tmp_f.name))
- return zip_obj
-
- logger.debug("Nothing found")
- return None
+ return _zip_from_subtitle_file(content)
def update_matches(
diff --git a/tests/subliminal_patch/test_supersubtitles.py b/tests/subliminal_patch/test_supersubtitles.py
index d02c017fe..ce483caad 100644
--- a/tests/subliminal_patch/test_supersubtitles.py
+++ b/tests/subliminal_patch/test_supersubtitles.py
@@ -107,6 +107,30 @@ def test_download_movie_subtitle(movies):
assert subtitle.is_valid()
+def test_download_movie_subtitle_hungarian(movies):
+ movie = movies["dune"]
+
+ subtitle = SuperSubtitlesSubtitle(
+ Language.fromalpha2("hu"),
+ "https://www.feliratok.eu//index.php?action=letolt&felirat=1681841063",
+ 1634579718,
+ "Foo",
+ 0,
+ 0,
+ "",
+ ["Foo"],
+ "",
+ "",
+ "",
+ asked_for_episode=None,
+ )
+ assert subtitle.get_matches(movie)
+
+ with SuperSubtitlesProvider() as provider:
+ provider.download_subtitle(subtitle)
+ assert subtitle.is_valid()
+
+
def test_subtitle_reprs(movies):
subtitle = SuperSubtitlesSubtitle(
Language.fromalpha2("en"),