12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576 |
- using System.Xml.Serialization;
- using MediaBrowser.Model.Dlna;
- namespace MediaBrowser.Dlna.Profiles
- {
- [XmlRoot("Profile")]
- public class VlcProfile : DefaultProfile
- {
- public VlcProfile()
- {
- Name = "Vlc";
- TimelineOffsetSeconds = 5;
- Identification = new DeviceIdentification
- {
- ModelName = "Vlc",
- Headers = new[]
- {
- new HttpHeaderInfo {Name = "User-Agent", Value = "vlc", Match = HeaderMatchType.Substring}
- }
- };
- TranscodingProfiles = new[]
- {
- new TranscodingProfile
- {
- Container = "mp3",
- Type = DlnaProfileType.Audio,
- AudioCodec = "mp3"
- },
- new TranscodingProfile
- {
- Container = "ts",
- Type = DlnaProfileType.Video,
- VideoCodec = "h264",
- AudioCodec = "aac"
- },
- new TranscodingProfile
- {
- Container = "jpeg",
- Type = DlnaProfileType.Photo
- }
- };
- DirectPlayProfiles = new[]
- {
- new DirectPlayProfile
- {
- Container = "avi,mpeg,mkv,ts,mp4,mov,m4v,asf,webm,ogg,ogv,iso",
- Type = DlnaProfileType.Video
- },
- new DirectPlayProfile
- {
- Container = "mp3,flac,asf,off,oga,aac",
- Type = DlnaProfileType.Audio
- },
- new DirectPlayProfile
- {
- Type = DlnaProfileType.Photo,
- Container = "jpeg,png,gif,bmp,tiff"
- }
- };
- ResponseProfiles = new ResponseProfile[] { };
- ContainerProfiles = new ContainerProfile[] { };
- CodecProfiles = new CodecProfile[] { };
- }
- }
- }
|