1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- #pragma warning disable CS1591
- using System;
- using MediaBrowser.Model.Dlna;
- namespace Emby.Dlna.Profiles
- {
- [System.Xml.Serialization.XmlRoot("Profile")]
- public class MediaMonkeyProfile : DefaultProfile
- {
- public MediaMonkeyProfile()
- {
- Name = "MediaMonkey";
- SupportedMediaTypes = "Audio";
- Identification = new DeviceIdentification
- {
- FriendlyName = @"MediaMonkey",
- Headers = new[]
- {
- new HttpHeaderInfo
- {
- Name = "User-Agent",
- Value = "MediaMonkey",
- Match = HeaderMatchType.Substring
- }
- }
- };
- DirectPlayProfiles = new[]
- {
- new DirectPlayProfile
- {
- Container = "aac,mp3,mpa,wav,wma,mp2,ogg,oga,webma,ape,opus,flac,m4a",
- Type = DlnaProfileType.Audio
- }
- };
- ResponseProfiles = Array.Empty<ResponseProfile>();
- }
- }
- }
|