1
0
mirror of https://github.com/Radarr/Radarr.git synced 2024-09-11 12:02:35 +02:00

Added missing ACC audio format.

This commit is contained in:
Taloth Saldono 2017-05-27 22:19:55 +02:00
parent 8cc02a9d9c
commit ef5a400c68

View File

@ -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;