Jellyfin - Plugins - "Subtitle Extract"¶
Configuration options for jellyfin plugins "Subtitle Extract".
Available Options
This page documents 4 configuration options.
nixflix.jellyfin.plugins."Subtitle Extract".enable¶
Whether this plugin should be installed. When false, the plugin is treated as absent: if it was previously installed by nixflix it will be uninstalled on the next nixos-rebuild. This is equivalent to removing the attribute entirely from nixflix.jellyfin.plugins.
| Type | boolean |
| Default | |
| Declared in | modules/jellyfin/plugins/subtitleExtract.nix |
nixflix.jellyfin.plugins."Subtitle Extract".package¶
Nix package containing the unpacked Jellyfin plugin files to copy into Jellyfin's plugin directory.
For repository-managed plugins, use nixflix.lib.jellyfinPlugins.fromRepo { version = ...; hash = ...; } to resolve a deterministic package from the pinned plugin manifests.
| Type | null or package or (submodule) |
| Default | |
| Example | |
| Declared in | modules/jellyfin/plugins/subtitleExtract.nix |
nixflix.jellyfin.plugins."Subtitle Extract"¶
This option has no description.
| Type | submodule |
| Default | |
| Declared in | modules/jellyfin/plugins/subtitleExtract.nix |
nixflix.jellyfin.plugins."Subtitle Extract".apiName¶
The plugin's Name as reported by the Jellyfin /Plugins API. Defaults to the attribute name. Set this when the plugin's self-reported API name differs from its manifest name (e.g. the SSO-Auth plugin is listed in the manifest as "SSO Authentication" but reports itself via the API as "SSO-Auth").
Can be found when running the following while the plugin is installed:
curl -s -H "Authorization: MediaBrowser Token=$(sudo cat /run/jellyfin/auth-token)" \
http://127.0.0.1:8096/Plugins | jq '.[].Name'
| Type | string |
| Default | |
| Example | |
| Declared in | modules/jellyfin/plugins/subtitleExtract.nix |