jellyfin/Emby.Dlna/Profiles/MarantzProfile.cs

44 lines
1 KiB
C#
Raw Normal View History

#pragma warning disable CS1591
using MediaBrowser.Model.Dlna;
2017-06-26 01:04:15 +02:00
namespace Emby.Dlna.Profiles
{
2018-09-12 19:26:21 +02:00
[System.Xml.Serialization.XmlRoot("Profile")]
2017-06-26 01:04:15 +02:00
public class MarantzProfile : DefaultProfile
{
public MarantzProfile()
{
Name = "Marantz";
SupportedMediaTypes = "Audio";
Identification = new DeviceIdentification
{
Manufacturer = @"Marantz",
Headers = new[]
{
new HttpHeaderInfo
{
Name = "User-Agent",
Value = "Marantz",
Match = HeaderMatchType.Substring
}
}
};
DirectPlayProfiles = new[]
{
new DirectPlayProfile
{
2017-06-26 18:20:45 +02:00
Container = "aac,mp3,wav,wma,flac",
2017-06-26 01:04:15 +02:00
Type = DlnaProfileType.Audio
},
};
2020-07-04 17:54:25 +02:00
ResponseProfiles = System.Array.Empty<ResponseProfile>();
2017-06-26 01:04:15 +02:00
}
}
}