Created
August 26, 2020 14:50
-
-
Save FdelMazo/4f3b339455d4319b80dad4ba578770c5 to your computer and use it in GitHub Desktop.
Subtitle downloader for multiple videos all in the same folder.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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