add aac (latm) audio format (#2561)

* add aac (latm) audio format

* update changelog
This commit is contained in:
Jason Dove
2025-10-23 15:56:13 -05:00
committed by GitHub
parent e089b12c2b
commit a47510fef3
13 changed files with 110 additions and 7 deletions
+1 -1
View File
@@ -307,7 +307,7 @@ public class IptvController : StreamingControllerBase
string audioCodec = streamingSpecs.AudioFormat switch
{
FFmpegProfileAudioFormat.Ac3 => "ac-3",
FFmpegProfileAudioFormat.Aac => "mp4a.40.2",
FFmpegProfileAudioFormat.Aac or FFmpegProfileAudioFormat.AacLatm => "mp4a.40.2",
_ => string.Empty
};