Merge pull request #1807 from GeiserX/add-whisper-subs

Add WhisperSubs to third-party plugins
This commit is contained in:
Niels van Velzen
2026-04-20 22:18:59 +02:00
committed by GitHub
2 changed files with 16 additions and 0 deletions
+8
View File
@@ -345,6 +345,14 @@ Fallback cover-image provider for books, audiobooks, and PDFs. Extracts covers f
- [GitHub](https://github.com/GeiserX/smart-covers)
#### WhisperSubs
Local AI-powered subtitle generation using whisper.cpp. Generates SRT subtitles for movies and TV shows using a local Whisper model — no cloud APIs, no subscriptions.
**Links:**
- [GitHub](https://github.com/GeiserX/whisper-subs)
## Repositories
import { OfficialPluginRepositories, ThirdPartyRepositories } from '../../../../src/data/pluginRepositories';
+8
View File
@@ -129,5 +129,13 @@ export const ThirdPartyRepositories: Array<PluginRepository> = [
includes: {
SmartCovers: 'https://github.com/GeiserX/smart-covers'
}
},
{
id: 'gh:GeiserX/whisper-subs',
name: "GeiserX's WhisperSubs Repo",
url: 'https://geiserx.github.io/whisper-subs/manifest.json',
includes: {
WhisperSubs: 'https://github.com/GeiserX/whisper-subs'
}
}
];