mirror of
https://github.com/Radarr/Radarr.git
synced 2025-04-23 14:07:20 -04:00
Added Dolby Digital Plus with Atmos (#3902)
* Added Dolby Digital Plus with Atmos Added Dolby Digital Plus with Atmos by checking the codec additional features for JOC, which stands for Joint Object Coding and is the technique used for adding Atmos metadata to Dolby Digital Plus audio streams. This is similar to the 16-ch additional feature used to distinguish Atmos in a TrueHD audio stream. * Corrected positioning of EAC3 Atmos * Changed the formatting from aphrodite to dapper "splitAdditionalFeatures.ContainsIgnoreCase" was changed to "audioAdditionalFeatures ==" * Removed White Space at the end of line 176
This commit is contained in:
parent
09fe1bfc96
commit
802e5ac151
1 changed files with 5 additions and 0 deletions
|
@ -57,6 +57,11 @@ namespace NzbDrone.Core.MediaFiles.MediaInfo
|
|||
|
||||
if (audioFormat.EqualsIgnoreCase("E-AC-3"))
|
||||
{
|
||||
if (audioAdditionalFeatures == "JOC")
|
||||
{
|
||||
return "EAC3 Atmos";
|
||||
}
|
||||
|
||||
return "EAC3";
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue