diff options
| author | Joe Rogers <1337joe@users.noreply.github.com> | 2022-10-07 06:38:05 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-10-07 12:38:05 +0200 |
| commit | 2e4db18ebea51a3e0b2d9b822ccee3bad918173f (patch) | |
| tree | b29c5e4a48473f85f7ceb2ee3fa8e0dba5f3812f /Emby.Naming/Common/NamingOptions.cs | |
| parent | 3612b427c455d576da7defca8d544ac0cb83d7b3 (diff) | |
Add hearing impaired subtitle stream indicator (#7379)
Co-authored-by: Claus Vium <cvium@users.noreply.github.com>
Diffstat (limited to 'Emby.Naming/Common/NamingOptions.cs')
| -rw-r--r-- | Emby.Naming/Common/NamingOptions.cs | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/Emby.Naming/Common/NamingOptions.cs b/Emby.Naming/Common/NamingOptions.cs index e016d7e51..29cc6558c 100644 --- a/Emby.Naming/Common/NamingOptions.cs +++ b/Emby.Naming/Common/NamingOptions.cs @@ -280,6 +280,13 @@ namespace Emby.Naming.Common "default" }; + MediaHearingImpairedFlags = new[] + { + "cc", + "hi", + "sdh" + }; + EpisodeExpressions = new[] { // *** Begin Kodi Standard Naming @@ -728,6 +735,11 @@ namespace Emby.Naming.Common public string[] MediaDefaultFlags { get; set; } /// <summary> + /// Gets or sets list of external media hearing impaired flags. + /// </summary> + public string[] MediaHearingImpairedFlags { get; set; } + + /// <summary> /// Gets or sets list of album stacking prefixes. /// </summary> public string[] AlbumStackingPrefixes { get; set; } |
