jellyfin/Emby.Dlna/Profiles/DenonAvrProfile.cs

35 lines
827 B
C#
Raw Normal View History

#pragma warning disable CS1591
using MediaBrowser.Model.Dlna;
2016-10-29 18:22:20 -04:00
2016-10-29 18:34:54 -04:00
namespace Emby.Dlna.Profiles
2016-10-29 18:22:20 -04:00
{
2018-09-12 13:26:21 -04:00
[System.Xml.Serialization.XmlRoot("Profile")]
2016-10-29 18:22:20 -04:00
public class DenonAvrProfile : DefaultProfile
{
public DenonAvrProfile()
{
Name = "Denon AVR";
2017-06-25 19:04:15 -04:00
SupportedMediaTypes = "Audio";
2016-10-29 18:22:20 -04:00
Identification = new DeviceIdentification
{
FriendlyName = @"Denon:\[AVR:.*",
Manufacturer = "Denon"
};
DirectPlayProfiles = new[]
{
new DirectPlayProfile
{
Container = "mp3,flac,m4a,wma",
Type = DlnaProfileType.Audio
},
};
2020-07-04 11:54:25 -04:00
ResponseProfiles = System.Array.Empty<ResponseProfile>();
2016-10-29 18:22:20 -04:00
}
}
}