mirror of
https://github.com/LukeHagar/plexjs.git
synced 2025-12-06 12:37:46 +00:00
898 B
898 B
DefaultSubtitleAccessibility
The subtitles for the deaf or hard-of-hearing (SDH) searches mode (0 = Prefer non-SDH subtitles, 1 = Prefer SDH subtitles, 2 = Only show SDH subtitles, 3 = Only show non-SDH subtitles)
Example Usage
import { DefaultSubtitleAccessibility } from "@lukehagar/plexjs/models/shared";
let value: DefaultSubtitleAccessibility =
DefaultSubtitleAccessibility.PreferSdh;
Values
This is an open enum. Unrecognized values will be captured as the Unrecognized<number> branded type.
| Name | Value |
|---|---|
PreferNonSdh |
0 |
PreferSdh |
1 |
OnlySdh |
2 |
OnlyNonSdh |
3 |
| - | Unrecognized<number> |