jellyfin/MediaBrowser.Dlna/Profiles/XboxOneProfile.cs

357 lines
13 KiB
C#
Raw Normal View History

2014-04-04 00:50:04 +02:00
using MediaBrowser.Model.Dlna;
2014-10-22 06:42:26 +02: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 XboxOneProfile : DefaultProfile
{
public XboxOneProfile()
{
Name = "Xbox One";
2014-10-21 02:54:01 +02:00
TimelineOffsetSeconds = 40;
2015-04-16 16:59:39 +02:00
2014-03-23 17:42:02 +01:00
Identification = new DeviceIdentification
{
2015-05-08 00:27:01 +02:00
ModelName = "Xbox One",
2014-12-14 01:42:22 +01:00
Headers = new[]
{
2015-04-16 16:59:39 +02:00
new HttpHeaderInfo
{
Name = "FriendlyName.DLNA.ORG", Value = "XboxOne", Match = HeaderMatchType.Substring
},
new HttpHeaderInfo
{
Name = "User-Agent", Value = "NSPlayer/12", Match = HeaderMatchType.Substring
}
2014-12-14 01:42:22 +01:00
}
2014-03-23 17:42:02 +01:00
};
2015-04-16 16:59:39 +02:00
var videoProfile = "high|main|baseline|constrained baseline";
var videoLevel = "41";
2014-03-23 17:42:02 +01:00
TranscodingProfiles = new[]
{
new TranscodingProfile
{
Container = "mp3",
AudioCodec = "mp3",
Type = DlnaProfileType.Audio
},
new TranscodingProfile
2014-10-22 06:42:26 +02:00
{
Container = "jpeg",
VideoCodec = "jpeg",
Type = DlnaProfileType.Photo
},
new TranscodingProfile
2014-03-23 17:42:02 +01:00
{
Container = "ts",
VideoCodec = "h264",
2014-10-22 06:42:26 +02:00
AudioCodec = "aac",
2015-04-16 16:59:39 +02:00
Type = DlnaProfileType.Video
2014-03-23 17:42:02 +01:00
}
};
DirectPlayProfiles = new[]
{
new DirectPlayProfile
{
2014-04-09 04:12:17 +02:00
Container = "ts",
2016-02-23 17:24:58 +01:00
VideoCodec = "h264,mpeg2video",
AudioCodec = "ac3,aac,mp3",
2014-04-09 04:12:17 +02:00
Type = DlnaProfileType.Video
},
new DirectPlayProfile
{
Container = "avi",
VideoCodec = "mpeg4",
AudioCodec = "ac3,mp3",
Type = DlnaProfileType.Video
},
new DirectPlayProfile
{
Container = "avi",
VideoCodec = "h264",
AudioCodec = "aac",
Type = DlnaProfileType.Video
},
new DirectPlayProfile
{
Container = "mp4,mov,mkv",
2016-01-16 20:02:15 +01:00
VideoCodec = "h264,mpeg4,mpeg2video",
2014-04-09 04:12:17 +02:00
AudioCodec = "aac,ac3",
Type = DlnaProfileType.Video
},
new DirectPlayProfile
{
Container = "asf",
VideoCodec = "wmv2,wmv3,vc1",
AudioCodec = "wmav2,wmapro",
Type = DlnaProfileType.Video
},
new DirectPlayProfile
{
Container = "asf",
AudioCodec = "wmav2,wmapro,wmavoice",
2014-03-23 17:42:02 +01:00
Type = DlnaProfileType.Audio
2014-04-09 04:12:17 +02:00
},
new DirectPlayProfile
{
Container = "mp3",
AudioCodec = "mp3",
Type = DlnaProfileType.Audio
},
new DirectPlayProfile
{
Container = "jpeg",
Type = DlnaProfileType.Photo
2014-03-23 17:42:02 +01:00
}
};
2014-04-09 04:12:17 +02:00
ContainerProfiles = new[]
{
new ContainerProfile
{
Type = DlnaProfileType.Video,
Container = "mp4,mov",
Conditions = new []
{
new ProfileCondition
{
Condition = ProfileConditionType.Equals,
Property = ProfileConditionValue.Has64BitOffsets,
Value = "false",
IsRequired = false
}
}
}
};
CodecProfiles = new[]
{
2014-10-22 06:42:26 +02:00
new CodecProfile
{
Type = CodecType.Video,
2015-04-16 16:59:39 +02:00
Codec = "mpeg4",
2014-10-22 06:42:26 +02:00
Conditions = new []
{
new ProfileCondition
{
Condition = ProfileConditionType.NotEquals,
Property = ProfileConditionValue.IsAnamorphic,
Value = "true",
IsRequired = false
},
new ProfileCondition
{
Condition = ProfileConditionType.LessThanEqual,
Property = ProfileConditionValue.VideoBitDepth,
Value = "8",
IsRequired = false
2015-04-16 16:59:39 +02:00
},
2014-04-09 04:12:17 +02:00
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.VideoFramerate,
Value = "30",
IsRequired = false
},
new ProfileCondition
{
Condition = ProfileConditionType.LessThanEqual,
Property = ProfileConditionValue.VideoBitrate,
Value = "5120000",
IsRequired = false
}
}
},
new CodecProfile
{
Type = CodecType.Video,
Codec = "h264",
Conditions = new []
{
2015-04-16 16:59:39 +02:00
new ProfileCondition
{
Condition = ProfileConditionType.NotEquals,
Property = ProfileConditionValue.IsAnamorphic,
Value = "true",
IsRequired = false
},
new ProfileCondition
{
Condition = ProfileConditionType.LessThanEqual,
Property = ProfileConditionValue.VideoBitDepth,
Value = "8",
IsRequired = false
},
2014-04-09 04:12:17 +02:00
new ProfileCondition
{
Condition = ProfileConditionType.LessThanEqual,
Property = ProfileConditionValue.Width,
Value = "1920"
},
new ProfileCondition
{
Condition = ProfileConditionType.LessThanEqual,
Property = ProfileConditionValue.Height,
Value = "1080"
2015-04-16 16:59:39 +02:00
},
new ProfileCondition
{
Condition = ProfileConditionType.LessThanEqual,
Property = ProfileConditionValue.VideoLevel,
Value = videoLevel,
IsRequired = false
},
new ProfileCondition
{
Condition = ProfileConditionType.EqualsAny,
Property = ProfileConditionValue.VideoProfile,
Value = videoProfile,
IsRequired = false
2014-04-09 04:12:17 +02:00
}
}
},
new CodecProfile
{
Type = CodecType.Video,
Codec = "wmv2,wmv3,vc1",
Conditions = new []
{
2015-04-16 16:59:39 +02:00
new ProfileCondition
{
Condition = ProfileConditionType.NotEquals,
Property = ProfileConditionValue.IsAnamorphic,
Value = "true",
IsRequired = false
},
new ProfileCondition
{
Condition = ProfileConditionType.LessThanEqual,
Property = ProfileConditionValue.VideoBitDepth,
Value = "8",
IsRequired = false
},
2014-04-09 04:12:17 +02:00
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.VideoFramerate,
Value = "30",
IsRequired = false
},
new ProfileCondition
{
Condition = ProfileConditionType.LessThanEqual,
Property = ProfileConditionValue.VideoBitrate,
Value = "15360000",
IsRequired = false
}
}
},
2015-04-16 16:59:39 +02:00
new CodecProfile
{
Type = CodecType.Video,
Conditions = new []
{
new ProfileCondition
{
Condition = ProfileConditionType.NotEquals,
Property = ProfileConditionValue.IsAnamorphic,
Value = "true",
IsRequired = false
},
new ProfileCondition
{
Condition = ProfileConditionType.LessThanEqual,
Property = ProfileConditionValue.VideoBitDepth,
Value = "8",
IsRequired = false
}
}
},
2014-04-09 04:12:17 +02:00
new CodecProfile
{
Type = CodecType.VideoAudio,
Codec = "ac3,wmav2,wmapro",
Conditions = new []
{
new ProfileCondition
{
Condition = ProfileConditionType.LessThanEqual,
Property = ProfileConditionValue.AudioChannels,
Value = "6",
IsRequired = false
}
}
},
new CodecProfile
{
Type = CodecType.VideoAudio,
Codec = "aac",
Conditions = new []
{
new ProfileCondition
{
Condition = ProfileConditionType.LessThanEqual,
Property = ProfileConditionValue.AudioChannels,
Value = "2",
IsRequired = false
},
new ProfileCondition
{
Condition = ProfileConditionType.Equals,
Property = ProfileConditionValue.AudioProfile,
Value = "lc",
IsRequired = false
}
}
}
};
2015-04-16 16:59:39 +02:00
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 = "avi",
2014-04-09 04:12:17 +02:00
MimeType = "video/avi",
2014-03-23 17:42:02 +01:00
Type = DlnaProfileType.Video
}
};
}
}
}