|
@@ -0,0 +1,42 @@
|
|
|
+using System.Xml.Serialization;
|
|
|
+using MediaBrowser.Model.Dlna;
|
|
|
+
|
|
|
+namespace Emby.Dlna.Profiles
|
|
|
+{
|
|
|
+ [XmlRoot("Profile")]
|
|
|
+ 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
|
|
|
+ {
|
|
|
+ Container = "aac,mp3,mpa,wav,wma,mp2,ogg,oga",
|
|
|
+ Type = DlnaProfileType.Audio
|
|
|
+ },
|
|
|
+ };
|
|
|
+
|
|
|
+ ResponseProfiles = new ResponseProfile[] { };
|
|
|
+ }
|
|
|
+ }
|
|
|
+}
|