mirror of
https://github.com/Sonarr/Sonarr.git
synced 2024-12-16 11:37:58 +02:00
VideoBitDepth and AudioChannels in Filename examples
This commit is contained in:
parent
5fcd65ef57
commit
e7275af073
@ -88,7 +88,10 @@ public FileNameSampleService(IBuildFileNames buildFileNames)
|
|||||||
var mediaInfo = new MediaInfoModel()
|
var mediaInfo = new MediaInfoModel()
|
||||||
{
|
{
|
||||||
VideoCodec = "AVC",
|
VideoCodec = "AVC",
|
||||||
|
VideoBitDepth = 8,
|
||||||
AudioFormat = "DTS",
|
AudioFormat = "DTS",
|
||||||
|
AudioChannels = 6,
|
||||||
|
AudioChannelPositions = "3/2/0.1",
|
||||||
AudioLanguages = "English",
|
AudioLanguages = "English",
|
||||||
Subtitles = "English/German"
|
Subtitles = "English/German"
|
||||||
};
|
};
|
||||||
@ -96,7 +99,10 @@ public FileNameSampleService(IBuildFileNames buildFileNames)
|
|||||||
var mediaInfoAnime = new MediaInfoModel()
|
var mediaInfoAnime = new MediaInfoModel()
|
||||||
{
|
{
|
||||||
VideoCodec = "AVC",
|
VideoCodec = "AVC",
|
||||||
|
VideoBitDepth = 8,
|
||||||
AudioFormat = "DTS",
|
AudioFormat = "DTS",
|
||||||
|
AudioChannels = 6,
|
||||||
|
AudioChannelPositions = "3/2/0.1",
|
||||||
AudioLanguages = "Japanese",
|
AudioLanguages = "Japanese",
|
||||||
Subtitles = "Japanese/English"
|
Subtitles = "Japanese/English"
|
||||||
};
|
};
|
||||||
|
Loading…
Reference in New Issue
Block a user