12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697 |
- using MediaBrowser.Model.Dlna;
- using System.Xml.Serialization;
- namespace MediaBrowser.Dlna.Profiles
- {
- [XmlRoot("Profile")]
- public class KodiProfile : DefaultProfile
- {
- public KodiProfile()
- {
- Name = "Kodi";
- MaxStreamingBitrate = 100000000;
- MaxStaticBitrate = 100000000;
- MusicStreamingTranscodingBitrate = 1280000;
- MusicSyncBitrate = 1280000;
- TimelineOffsetSeconds = 5;
- Identification = new DeviceIdentification
- {
- ModelName = "Kodi",
- Headers = new[]
- {
- new HttpHeaderInfo {Name = "User-Agent", Value = "Kodi", Match = HeaderMatchType.Substring}
- }
- };
- TranscodingProfiles = new[]
- {
- new TranscodingProfile
- {
- Container = "mp3",
- AudioCodec = "mp3",
- Type = DlnaProfileType.Audio
- },
- new TranscodingProfile
- {
- Container = "ts",
- Type = DlnaProfileType.Video,
- AudioCodec = "aac",
- VideoCodec = "h264"
- },
- new TranscodingProfile
- {
- Container = "jpeg",
- Type = DlnaProfileType.Photo
- }
- };
- DirectPlayProfiles = new[]
- {
- new DirectPlayProfile
- {
- Container = "",
- Type = DlnaProfileType.Video
- },
- new DirectPlayProfile
- {
- Container = "",
- Type = DlnaProfileType.Audio
- },
- new DirectPlayProfile
- {
- Container = "",
- Type = DlnaProfileType.Photo,
- }
- };
- ResponseProfiles = new ResponseProfile[] { };
- ContainerProfiles = new ContainerProfile[] { };
- CodecProfiles = new CodecProfile[] { };
- SubtitleProfiles = new[]
- {
- new SubtitleProfile
- {
- Format = "srt",
- Method = SubtitleDeliveryMethod.External,
- },
- new SubtitleProfile
- {
- Format = "sub",
- Method = SubtitleDeliveryMethod.External,
- }
- };
- }
- }
- }
|