diff options
author | The Man <[email protected]> | 2024-08-06 02:24:15 +0200 |
---|---|---|
committer | GitHub <[email protected]> | 2024-08-06 09:24:15 +0900 |
commit | 866b1d5894a4f8cf873a4b3d11a0dc8c4bbd47d7 (patch) | |
tree | 6ff3d7e7fb5c5ae9bf82bfc511e3616686017a61 /frontend/src | |
parent | e5edf6203cce098b09f4fb4ae89a5c9bd414cc3d (diff) | |
download | bazarr-866b1d5894a4f8cf873a4b3d11a0dc8c4bbd47d7.tar.gz bazarr-866b1d5894a4f8cf873a4b3d11a0dc8c4bbd47d7.zip |
Added jimaku provider (#2505)
Co-authored-by: Danny <[email protected]>
Diffstat (limited to 'frontend/src')
-rw-r--r-- | frontend/src/pages/Settings/Providers/list.ts | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/frontend/src/pages/Settings/Providers/list.ts b/frontend/src/pages/Settings/Providers/list.ts index b2f9a33c7..8d7a86a99 100644 --- a/frontend/src/pages/Settings/Providers/list.ts +++ b/frontend/src/pages/Settings/Providers/list.ts @@ -218,6 +218,35 @@ export const ProviderList: Readonly<ProviderInfo[]> = [ }, ], }, + { + key: "jimaku", + name: "Jimaku.cc", + description: "Japanese Subtitles Provider", + message: + "API key required. Subtitles stem from various sources and might have quality/timing issues.", + inputs: [ + { + type: "password", + key: "api_key", + name: "API key", + }, + { + type: "switch", + key: "enable_name_search_fallback", + name: "Search by name if no AniList ID was determined (Less accurate, required for live action)", + }, + { + type: "switch", + key: "enable_archives_download", + name: "Also consider archives alongside uncompressed subtitles", + }, + { + type: "switch", + key: "enable_ai_subs", + name: "Download AI generated subtitles", + }, + ], + }, { key: "hosszupuska", description: "Hungarian Subtitles Provider" }, { key: "karagarga", |