jellyfin/MediaBrowser.Dlna/Profiles/WdtvLiveProfile.cs

267 lines
8.4 KiB
C#
Raw Normal View History

using MediaBrowser.Model.Dlna;
2014-11-26 20:29:49 +01:00
using System.Xml.Serialization;
2014-03-23 17:42:02 +01:00
namespace MediaBrowser.Dlna.Profiles
{
2014-03-26 16:06:48 +01:00
[XmlRoot("Profile")]
2014-03-23 17:42:02 +01:00
public class WdtvLiveProfile : DefaultProfile
{
public WdtvLiveProfile()
{
Name = "WDTV Live";
TimelineOffsetSeconds = 5;
2015-05-10 06:29:04 +02:00
IgnoreTranscodeByteRangeRequests = true;
2014-03-23 17:42:02 +01:00
Identification = new DeviceIdentification
{
2015-05-24 20:33:28 +02:00
ModelName = "WD TV",
2014-03-23 17:42:02 +01:00
Headers = new []
{
new HttpHeaderInfo {Name = "User-Agent", Value = "alphanetworks", Match = HeaderMatchType.Substring},
new HttpHeaderInfo
{
Name = "User-Agent",
Value = "ALPHA Networks",
Match = HeaderMatchType.Substring
}
}
};
TranscodingProfiles = new[]
{
new TranscodingProfile
{
Container = "mp3",
Type = DlnaProfileType.Audio,
AudioCodec = "mp3"
},
new TranscodingProfile
{
Container = "ts",
Type = DlnaProfileType.Video,
VideoCodec = "h264",
2014-11-26 20:29:49 +01:00
AudioCodec = "aac"
2014-03-23 17:42:02 +01:00
},
new TranscodingProfile
{
Container = "jpeg",
Type = DlnaProfileType.Photo
}
};
DirectPlayProfiles = new[]
{
new DirectPlayProfile
{
Container = "avi",
Type = DlnaProfileType.Video,
VideoCodec = "mpeg1video,mpeg2video,mpeg4,h264,vc1",
2016-01-26 17:38:52 +01:00
AudioCodec = "ac3,dca,mp2,mp3,pcm,dca"
2014-03-23 17:42:02 +01:00
},
new DirectPlayProfile
{
Container = "mpeg",
Type = DlnaProfileType.Video,
VideoCodec = "mpeg1video,mpeg2video",
2016-01-26 17:38:52 +01:00
AudioCodec = "ac3,dca,mp2,mp3,pcm,dca"
2014-03-23 17:42:02 +01:00
},
new DirectPlayProfile
{
Container = "mkv",
Type = DlnaProfileType.Video,
VideoCodec = "mpeg1video,mpeg2video,mpeg4,h264,vc1",
2016-01-26 17:38:52 +01:00
AudioCodec = "ac3,dca,aac,mp2,mp3,pcm,dca"
2014-03-23 17:42:02 +01:00
},
new DirectPlayProfile
{
2016-03-28 19:13:20 +02:00
Container = "ts,m2ts",
2014-03-23 17:42:02 +01:00
Type = DlnaProfileType.Video,
VideoCodec = "mpeg1video,mpeg2video,h264,vc1",
2016-01-26 17:38:52 +01:00
AudioCodec = "ac3,dca,mp2,mp3,aac,dca"
2014-03-23 17:42:02 +01:00
},
new DirectPlayProfile
{
Container = "mp4,mov",
Type = DlnaProfileType.Video,
VideoCodec = "h264,mpeg4",
2016-01-26 17:38:52 +01:00
AudioCodec = "ac3,aac,mp2,mp3,dca"
2014-03-23 17:42:02 +01:00
},
new DirectPlayProfile
{
Container = "asf",
Type = DlnaProfileType.Video,
VideoCodec = "vc1",
AudioCodec = "wmav2,wmapro"
},
new DirectPlayProfile
{
Container = "asf",
Type = DlnaProfileType.Video,
VideoCodec = "mpeg2video",
AudioCodec = "mp2,ac3"
},
new DirectPlayProfile
{
Container = "mp3",
AudioCodec = "mp2,mp3",
Type = DlnaProfileType.Audio
},
new DirectPlayProfile
{
Container = "mp4",
AudioCodec = "mp4",
Type = DlnaProfileType.Audio
},
new DirectPlayProfile
{
Container = "flac",
AudioCodec = "flac",
Type = DlnaProfileType.Audio
},
new DirectPlayProfile
{
Container = "asf",
AudioCodec = "wmav2,wmapro,wmavoice",
Type = DlnaProfileType.Audio
},
new DirectPlayProfile
{
Container = "ogg",
AudioCodec = "vorbis",
Type = DlnaProfileType.Audio
},
new DirectPlayProfile
{
Type = DlnaProfileType.Photo,
Container = "jpeg,png,gif,bmp,tiff"
}
};
2014-04-01 06:16:25 +02:00
ResponseProfiles = new[]
2014-03-23 17:42:02 +01:00
{
2014-04-01 06:16:25 +02:00
new ResponseProfile
2014-03-23 17:42:02 +01:00
{
Container = "ts",
OrgPn = "MPEG_TS_SD_NA",
Type = DlnaProfileType.Video
}
};
ContainerProfiles = new[]
{
new ContainerProfile
{
Type = DlnaProfileType.Photo,
Conditions = new []
{
new ProfileCondition
{
Condition = ProfileConditionType.LessThanEqual,
Property = ProfileConditionValue.Width,
Value = "1920"
},
new ProfileCondition
{
Condition = ProfileConditionType.LessThanEqual,
Property = ProfileConditionValue.Height,
Value = "1080"
}
}
}
};
CodecProfiles = new[]
{
new CodecProfile
{
Type = CodecType.Video,
2014-03-23 17:42:02 +01:00
Codec = "h264",
Conditions = new []
{
new ProfileCondition
{
Condition = ProfileConditionType.LessThanEqual,
Property = ProfileConditionValue.Width,
Value = "1920"
},
new ProfileCondition
{
Condition = ProfileConditionType.LessThanEqual,
Property = ProfileConditionValue.Height,
Value = "1080"
},
new ProfileCondition
{
Condition = ProfileConditionType.LessThanEqual,
Property = ProfileConditionValue.VideoLevel,
Value = "41"
}
}
},
new CodecProfile
{
Type = CodecType.VideoAudio,
2014-03-23 17:42:02 +01:00
Codec = "aac",
Conditions = new []
{
new ProfileCondition
{
Condition = ProfileConditionType.LessThanEqual,
Property = ProfileConditionValue.AudioChannels,
Value = "2"
}
}
}
};
2015-12-29 20:17:31 +01:00
SubtitleProfiles = new[]
{
new SubtitleProfile
{
Format = "srt",
Method = SubtitleDeliveryMethod.External
},
new SubtitleProfile
{
Format = "srt",
Method = SubtitleDeliveryMethod.Embed
},
new SubtitleProfile
{
Format = "sub",
Method = SubtitleDeliveryMethod.Embed
},
new SubtitleProfile
{
Format = "subrip",
Method = SubtitleDeliveryMethod.Embed
},
new SubtitleProfile
{
Format = "idx",
Method = SubtitleDeliveryMethod.Embed
}
};
2014-03-23 17:42:02 +01:00
}
}
}