mirror of
https://github.com/Radarr/Radarr
synced 2024-12-26 17:59:14 +00:00
VideoBitDepth and AudioChannels in Filename examples
This commit is contained in:
parent
5fcd65ef57
commit
e7275af073
1 changed files with 6 additions and 0 deletions
|
@ -88,7 +88,10 @@ public FileNameSampleService(IBuildFileNames buildFileNames)
|
|||
var mediaInfo = new MediaInfoModel()
|
||||
{
|
||||
VideoCodec = "AVC",
|
||||
VideoBitDepth = 8,
|
||||
AudioFormat = "DTS",
|
||||
AudioChannels = 6,
|
||||
AudioChannelPositions = "3/2/0.1",
|
||||
AudioLanguages = "English",
|
||||
Subtitles = "English/German"
|
||||
};
|
||||
|
@ -96,7 +99,10 @@ public FileNameSampleService(IBuildFileNames buildFileNames)
|
|||
var mediaInfoAnime = new MediaInfoModel()
|
||||
{
|
||||
VideoCodec = "AVC",
|
||||
VideoBitDepth = 8,
|
||||
AudioFormat = "DTS",
|
||||
AudioChannels = 6,
|
||||
AudioChannelPositions = "3/2/0.1",
|
||||
AudioLanguages = "Japanese",
|
||||
Subtitles = "Japanese/English"
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue