Skip to content

Instantly share code, notes, and snippets.

@FdelMazo
Created August 26, 2020 14:50
Show Gist options
  • Save FdelMazo/4f3b339455d4319b80dad4ba578770c5 to your computer and use it in GitHub Desktop.
Save FdelMazo/4f3b339455d4319b80dad4ba578770c5 to your computer and use it in GitHub Desktop.
Subtitle downloader for multiple videos all in the same folder.
#!/usr/bin/env python3
"""./MultSub.py in a folder with lots of videos... not much else to clarify
Depends on Subliminal and Babelfish.
pip install babelfish subliminal"""
import os
from babelfish import Language
from subliminal import download_best_subtitles, region, save_subtitles, scan_videos
def main():
videos = scan_videos(os.getcwd())
for v in videos:
try:
subtitles = download_best_subtitles([v], {Language('eng'),Language('spa')})[v]
for sub in subtitles:
sub.content.split(b'\n')[2]
save_subtitles(v,[sub])
print("{} ok".format(v))
except:
pass
main()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment