diff options
| author | Bond-009 <bond.009@outlook.com> | 2024-08-30 00:07:44 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-08-30 00:07:44 +0200 |
| commit | 9c76a2e91b040596a332b53b5c0232e29cf8c84e (patch) | |
| tree | 4fc79981e1be6cf1986da30ebd15aacbd79423e9 | |
| parent | b97f958770b11b410af7c9540829c9eed967f513 (diff) | |
| parent | d352d883d3b66e3b51a003690f7ae9b546011e22 (diff) | |
Merge pull request #12532 from Bond-009/hlscodecs
Use Apple reccomended values for HLS CODECS
| -rw-r--r-- | Jellyfin.Api/Helpers/HlsCodecStringHelpers.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Jellyfin.Api/Helpers/HlsCodecStringHelpers.cs b/Jellyfin.Api/Helpers/HlsCodecStringHelpers.cs index d0bfa1fbe..fa0db0541 100644 --- a/Jellyfin.Api/Helpers/HlsCodecStringHelpers.cs +++ b/Jellyfin.Api/Helpers/HlsCodecStringHelpers.cs @@ -19,12 +19,12 @@ public static class HlsCodecStringHelpers /// <summary> /// Codec name for AC-3. /// </summary> - public const string AC3 = "mp4a.a5"; + public const string AC3 = "ac-3"; /// <summary> /// Codec name for E-AC-3. /// </summary> - public const string EAC3 = "mp4a.a6"; + public const string EAC3 = "ec-3"; /// <summary> /// Codec name for FLAC. |
