You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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
The text was updated successfully, but these errors were encountered:
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 } }
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
The text was updated successfully, but these errors were encountered: