mirror of
https://github.com/Readarr/Readarr
synced 2025-12-20 07:13:17 +01:00
parent
d53b983c91
commit
e0993fb52e
1 changed files with 10 additions and 0 deletions
|
|
@ -73,6 +73,11 @@ public static string FormatAudioCodec(MediaInfoModel mediaInfo)
|
|||
return string.Empty;
|
||||
}
|
||||
|
||||
if (audioFormat.EqualsIgnoreCase("ALAC"))
|
||||
{
|
||||
return "ALAC";
|
||||
}
|
||||
|
||||
if (audioFormat.EqualsIgnoreCase("AC-3"))
|
||||
{
|
||||
return "AC3";
|
||||
|
|
@ -168,6 +173,11 @@ public static string FormatAudioCodecLegacy(MediaInfoModel mediaInfo)
|
|||
return "AC3";
|
||||
}
|
||||
|
||||
if (audioFormat.EqualsIgnoreCase("ALAC"))
|
||||
{
|
||||
return "ALAC";
|
||||
}
|
||||
|
||||
if (audioFormat.EqualsIgnoreCase("E-AC-3"))
|
||||
{
|
||||
return "EAC3";
|
||||
|
|
|
|||
Loading…
Reference in a new issue