Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Subtitle download failed #8

Open
aravindjr opened this issue May 7, 2020 · 1 comment
Open

Subtitle download failed #8

aravindjr opened this issue May 7, 2020 · 1 comment

Comments

@aravindjr
Copy link

Hi, I was trying to get it work on my machine. But it just logs the error message that Subtitle download failed. I have installed subliminal using pip. Not sure what the issue is

OS: Windows 10
Python: 3.8.2

@kamiqaze
Copy link

Hi, I was trying to get it work on my machine. But it just logs the error message that Subtitle download failed. I have installed subliminal using pip. Not sure what the issue is

OS: Windows 10 Python: 3.8.2

Hi, I have been getting the same error for the longest time on my mac, and today i finally sat down to figure out the issue, which was the default subliminal path on the newer osx versions. here's how i modified autosub.lua for it to work.

add the following path as line 12
subl = "/Users/<XXX>/Library/Python/3.9/bin/subliminal" -- use 'which subliminal' in terminal to find the path for mac/linux, and 'where subliminal' in command prompt for windows

modify line 15 (revised) from
t = { args = { "subliminal", "download", "-s", "-f", "-l", "en", path } }
to
t = { args = { subl, "download", "-s", "-f", "-l", "en", path } }

and that's it.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants