DenonAvrProfile.cs 783 B

1234567891011121314151617181920212223242526272829303132
  1. using MediaBrowser.Model.Dlna;
  2. namespace Emby.Dlna.Profiles
  3. {
  4. [System.Xml.Serialization.XmlRoot("Profile")]
  5. public class DenonAvrProfile : DefaultProfile
  6. {
  7. public DenonAvrProfile()
  8. {
  9. Name = "Denon AVR";
  10. SupportedMediaTypes = "Audio";
  11. Identification = new DeviceIdentification
  12. {
  13. FriendlyName = @"Denon:\[AVR:.*",
  14. Manufacturer = "Denon"
  15. };
  16. DirectPlayProfiles = new[]
  17. {
  18. new DirectPlayProfile
  19. {
  20. Container = "mp3,flac,m4a,wma",
  21. Type = DlnaProfileType.Audio
  22. },
  23. };
  24. ResponseProfiles = new ResponseProfile[] { };
  25. }
  26. }
  27. }