New: HDR metadata for Trakt connection
This commit is contained in:
parent
1f82b9fb78
commit
be937ec581
|
@ -9,6 +9,7 @@ namespace NzbDrone.Core.Notifications.Trakt.Resource
|
||||||
[JsonProperty(PropertyName = "collected_at")]
|
[JsonProperty(PropertyName = "collected_at")]
|
||||||
public DateTime CollectedAt { get; set; }
|
public DateTime CollectedAt { get; set; }
|
||||||
public string Resolution { get; set; }
|
public string Resolution { get; set; }
|
||||||
|
public string Hdr { get; set; }
|
||||||
|
|
||||||
[JsonProperty(PropertyName = "audio_channels")]
|
[JsonProperty(PropertyName = "audio_channels")]
|
||||||
public string AudioChannels { get; set; }
|
public string AudioChannels { get; set; }
|
||||||
|
|
|
@ -160,6 +160,7 @@ namespace NzbDrone.Core.Notifications.Trakt
|
||||||
};
|
};
|
||||||
|
|
||||||
var traktResolution = MapResolution(episodeFile.Quality.Quality.Resolution, episodeFile.MediaInfo?.ScanType);
|
var traktResolution = MapResolution(episodeFile.Quality.Quality.Resolution, episodeFile.MediaInfo?.ScanType);
|
||||||
|
var hdr = MapHdr(episodeFile);
|
||||||
var mediaType = MapMediaType(episodeFile.Quality.Quality.Source);
|
var mediaType = MapMediaType(episodeFile.Quality.Quality.Source);
|
||||||
var audio = MapAudio(episodeFile);
|
var audio = MapAudio(episodeFile);
|
||||||
var audioChannels = MapAudioChannels(episodeFile, audio);
|
var audioChannels = MapAudioChannels(episodeFile, audio);
|
||||||
|
@ -173,6 +174,7 @@ namespace NzbDrone.Core.Notifications.Trakt
|
||||||
Number = episode.EpisodeNumber,
|
Number = episode.EpisodeNumber,
|
||||||
CollectedAt = DateTime.Now,
|
CollectedAt = DateTime.Now,
|
||||||
Resolution = traktResolution,
|
Resolution = traktResolution,
|
||||||
|
Hdr = hdr,
|
||||||
MediaType = mediaType,
|
MediaType = mediaType,
|
||||||
AudioChannels = audioChannels,
|
AudioChannels = audioChannels,
|
||||||
Audio = audio,
|
Audio = audio,
|
||||||
|
@ -316,6 +318,20 @@ namespace NzbDrone.Core.Notifications.Trakt
|
||||||
return traktResolution;
|
return traktResolution;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
private string MapHdr(EpisodeFile episodeFile)
|
||||||
|
{
|
||||||
|
var traktHdr = episodeFile.MediaInfo?.VideoHdrFormat switch
|
||||||
|
{
|
||||||
|
HdrFormat.DolbyVision or HdrFormat.DolbyVisionSdr => "dolby_vision",
|
||||||
|
HdrFormat.Hdr10 or HdrFormat.DolbyVisionHdr10 => "hdr10",
|
||||||
|
HdrFormat.Hdr10Plus or HdrFormat.DolbyVisionHdr10Plus => "hdr10_plus",
|
||||||
|
HdrFormat.Hlg10 or HdrFormat.DolbyVisionHlg => "hlg",
|
||||||
|
_ => null
|
||||||
|
};
|
||||||
|
|
||||||
|
return traktHdr;
|
||||||
|
}
|
||||||
|
|
||||||
private string MapAudio(EpisodeFile episodeFile)
|
private string MapAudio(EpisodeFile episodeFile)
|
||||||
{
|
{
|
||||||
var audioCodec = episodeFile.MediaInfo != null ? MediaInfoFormatter.FormatAudioCodec(episodeFile.MediaInfo, episodeFile.SceneName) : string.Empty;
|
var audioCodec = episodeFile.MediaInfo != null ? MediaInfoFormatter.FormatAudioCodec(episodeFile.MediaInfo, episodeFile.SceneName) : string.Empty;
|
||||||
|
|
Loading…
Reference in New Issue