DenonAvrProfile.cs 646 B

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