mirror of
https://github.com/Readarr/Readarr
synced 2026-01-30 19:33:07 +01:00
parent
7c2a230f87
commit
4bb0735565
1 changed files with 10 additions and 0 deletions
|
|
@ -108,6 +108,11 @@ public static string FormatAudioCodec(MediaInfoModel mediaInfo)
|
|||
return "FLAC";
|
||||
}
|
||||
|
||||
if (audioFormat.Trim().EqualsIgnoreCase("MLP"))
|
||||
{
|
||||
return "MLP";
|
||||
}
|
||||
|
||||
if (audioFormat.Trim().EqualsIgnoreCase("mp3"))
|
||||
{
|
||||
return "MP3";
|
||||
|
|
@ -193,6 +198,11 @@ public static string FormatAudioCodecLegacy(MediaInfoModel mediaInfo)
|
|||
return "MP3";
|
||||
}
|
||||
|
||||
if (audioFormat.EqualsIgnoreCase("MLP"))
|
||||
{
|
||||
return "MLP";
|
||||
}
|
||||
|
||||
if (audioFormat.EqualsIgnoreCase("DTS"))
|
||||
{
|
||||
return "DTS";
|
||||
|
|
|
|||
Loading…
Reference in a new issue