mirror of
https://github.com/Radarr/Radarr
synced 2026-04-21 20:21:17 +02:00
Added missing ACC audio format.
This commit is contained in:
parent
8cc02a9d9c
commit
ef5a400c68
1 changed files with 5 additions and 0 deletions
|
|
@ -54,6 +54,11 @@ public static string FormatAudioCodec(MediaInfoModel mediaInfo)
|
|||
return "EAC3";
|
||||
}
|
||||
|
||||
if (audioFormat == "AAC")
|
||||
{
|
||||
return "AAC";
|
||||
}
|
||||
|
||||
if (audioFormat == "MPEG Audio")
|
||||
{
|
||||
return mediaInfo.AudioProfile == "Layer 3" ? "MP3" : audioFormat;
|
||||
|
|
|
|||
Loading…
Reference in a new issue