diff options
| author | Jan Müller <github@lonebyte.de> | 2023-08-01 17:22:42 +0200 |
|---|---|---|
| committer | Jan Müller <github@lonebyte.de> | 2023-08-01 19:06:30 +0200 |
| commit | 19fb061381dd107d5e0236cf9d8b59b2e2318130 (patch) | |
| tree | 98c5c94f9a08ae6b414638670d526636384e82e4 /Jellyfin.Api/Helpers/HlsCodecStringHelpers.cs | |
| parent | e9f23c61c937b230b1d3bd7865a083aeb3d51657 (diff) | |
Correct the HLS Opus codec string
Apple doesn't support Opus via HLS yet, but if they ever do, they will
definitely expect "Opus" instead of "opus".
See https://mp4ra.org/#/codecs
Fixes: #10066
Diffstat (limited to 'Jellyfin.Api/Helpers/HlsCodecStringHelpers.cs')
| -rw-r--r-- | Jellyfin.Api/Helpers/HlsCodecStringHelpers.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Jellyfin.Api/Helpers/HlsCodecStringHelpers.cs b/Jellyfin.Api/Helpers/HlsCodecStringHelpers.cs index 9b1c52045..5eec1b0ca 100644 --- a/Jellyfin.Api/Helpers/HlsCodecStringHelpers.cs +++ b/Jellyfin.Api/Helpers/HlsCodecStringHelpers.cs @@ -39,7 +39,7 @@ public static class HlsCodecStringHelpers /// <summary> /// Codec name for OPUS. /// </summary> - public const string OPUS = "opus"; + public const string OPUS = "Opus"; /// <summary> /// Gets a MP3 codec string. |
