Skip to content

Commit

Permalink
Fixed AI and machine translated subtitles being incorrectly returned …
Browse files Browse the repository at this point in the history
…by Opensubtitles.com
  • Loading branch information
morpheus65535 committed May 17, 2023
1 parent 015beaf commit bdf4ee8
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions libs/subliminal_patch/providers/opensubtitlescom.py
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,7 @@ class OpenSubtitlesComSubtitle(Subtitle):

def __init__(self, language, forced, hearing_impaired, page_link, file_id, releases, uploader, title, year,
hash_matched, file_hash=None, season=None, episode=None, imdb_match=False):
super().__init__(language, hearing_impaired, page_link)
language = Language.rebuild(language, hi=hearing_impaired, forced=forced)

self.title = title
Expand Down Expand Up @@ -334,6 +335,16 @@ def query(self, languages, video):

if len(result['data']):
for item in result['data']:
# ignore AI translated subtitles
if 'ai_translated' in item['attributes'] and item['attributes']['ai_translated']:
logging.debug("Skipping AI translated subtitles")
continue

# ignore machine translated subtitles
if 'machine_translated' in item['attributes'] and item['attributes']['machine_translated']:
logging.debug("Skipping machine translated subtitles")
continue

if 'season_number' in item['attributes']['feature_details']:
season_number = item['attributes']['feature_details']['season_number']
else:
Expand Down

0 comments on commit bdf4ee8

Please sign in to comment.