1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2025-03-05 15:15:59 +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 @@ namespace NzbDrone.Core.MediaFiles.MediaInfo
return "EAC3";
}
if (audioFormat == "AAC")
{
return "AAC";
}
if (audioFormat == "MPEG Audio")
{
return mediaInfo.AudioProfile == "Layer 3" ? "MP3" : audioFormat;