diff --git a/website/cli.html b/website/cli.html index e86b9cf9..4f66d8d5 100644 --- a/website/cli.html +++ b/website/cli.html @@ -51,7 +51,7 @@
- filebot -get-subtitles path/to/episodes
- Fetch subtitles for the given files. Lookup matching subtitles via file hash.
+ filebot -get-missing-subtitles path/to/episodes
+ Fetch subtitles that are missing for the given files. Lookup matching subtitles via file hash only.
filebot -get-subtitles path/to/movie --q Avatar --lang zh --output srt --encoding utf8
- Fetch subtitles and force output format. Lookup subtitles via file hash and given search query.
+ Fetch subtitles and force output format. Lookup subtitles via file hash or given search query.
@@ -174,6 +174,11 @@
args.eachMediaFolder {
- getSubtitles(folder:it)
+ getMissingSubtitles(folder:it)
rename(folder:it)
compute(file:it.listFiles().findAll{ it.isVideo() })
}
Fetch subtitles, rename and compute checksums for all media folders in the file hierarchy.File[] getSubtitles(folder|file, query, lang, output, encoding, strict)-
getMissingSubtitles
+ so subtitles that have already been downloaded will not be downloaded again overridding existing subtitle files.
+