Fixed: Kodi metadata AC3 audio codec

Closes #1344
pull/4/head
Mark McDowall 8 years ago
parent c8474701a0
commit c1f59a55c6

@ -301,7 +301,7 @@ namespace NzbDrone.Core.Metadata.Consumers.Xbmc
var audio = new XElement("audio");
audio.Add(new XElement("bitrate", episodeFile.MediaInfo.AudioBitrate));
audio.Add(new XElement("channels", episodeFile.MediaInfo.AudioChannels));
audio.Add(new XElement("codec", episodeFile.MediaInfo.AudioFormat));
audio.Add(new XElement("codec", GetAudioCodec(episodeFile.MediaInfo.AudioFormat)));
audio.Add(new XElement("language", episodeFile.MediaInfo.AudioLanguages));
streamDetails.Add(audio);
@ -416,5 +416,15 @@ namespace NzbDrone.Core.Metadata.Consumers.Xbmc
{
return Path.ChangeExtension(episodeFilePath, "").Trim('.') + "-thumb.jpg";
}
private string GetAudioCodec(string audioCodec)
{
if (audioCodec == "AC-3")
{
return "AC3";
}
return audioCodec;
}
}
}

Loading…
Cancel
Save