mirror of
https://github.com/lidarr/lidarr.git
synced 2025-07-31 12:10:19 -07:00
parent
d53b983c91
commit
e0993fb52e
1 changed files with 10 additions and 0 deletions
|
@ -73,6 +73,11 @@ namespace NzbDrone.Core.MediaFiles.MediaInfo
|
||||||
return string.Empty;
|
return string.Empty;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (audioFormat.EqualsIgnoreCase("ALAC"))
|
||||||
|
{
|
||||||
|
return "ALAC";
|
||||||
|
}
|
||||||
|
|
||||||
if (audioFormat.EqualsIgnoreCase("AC-3"))
|
if (audioFormat.EqualsIgnoreCase("AC-3"))
|
||||||
{
|
{
|
||||||
return "AC3";
|
return "AC3";
|
||||||
|
@ -168,6 +173,11 @@ namespace NzbDrone.Core.MediaFiles.MediaInfo
|
||||||
return "AC3";
|
return "AC3";
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (audioFormat.EqualsIgnoreCase("ALAC"))
|
||||||
|
{
|
||||||
|
return "ALAC";
|
||||||
|
}
|
||||||
|
|
||||||
if (audioFormat.EqualsIgnoreCase("E-AC-3"))
|
if (audioFormat.EqualsIgnoreCase("E-AC-3"))
|
||||||
{
|
{
|
||||||
return "EAC3";
|
return "EAC3";
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue