DenonAvrProfile.cs 679 B

12345678910111213141516171819202122232425262728
  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. ClientType = "DLNA";
  10. Identification = new DeviceIdentification
  11. {
  12. FriendlyName = @"Denon:\[AVR:.*",
  13. Manufacturer = "Denon"
  14. };
  15. DirectPlayProfiles = new[]
  16. {
  17. new DirectPlayProfile
  18. {
  19. Container = "mp3,flac,m4a,wma",
  20. Type = DlnaProfileType.Audio
  21. },
  22. };
  23. }
  24. }
  25. }