You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
42 lines
1.1 KiB
42 lines
1.1 KiB
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 = new ResponseProfile[] { };
|
|
}
|
|
}
|
|
}
|