Replies: 1 comment
-
Ah my bad! This already exists with the |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Would it be possible to add a feature/setting to check to see if an .srt file already exists for the supplied path? This would be for the
cli
modeExample:
OpenSubtitlesDownload.py /path/to/file/movie.mkv
Analyze this path to see if a
movie.srt
exists, if so, skip downloading any subtitles.This would help eliminate downloading a .srt file for any movie that has a subtitles file already, eliminating excess downloads not needed for one's opensubtitles free account. 😁
My use case is running a find command to look for movie files on my NAS:
find "/path/to/videos" -name *.mkv -not -path '*/@eaDir/*' -exec ./OpenSubtitlesDownload.py {} \;
Beta Was this translation helpful? Give feedback.
All reactions