12345678910111213141516171819202122232425262728 |
- using MediaBrowser.Controller.Dlna;
- namespace MediaBrowser.Dlna.Profiles
- {
- public class DenonAvrProfile : DefaultProfile
- {
- public DenonAvrProfile()
- {
- Name = "Denon AVR";
- ClientType = "DLNA";
- Identification = new DeviceIdentification
- {
- FriendlyName = @"Denon:\[AVR:.*",
- Manufacturer = "Denon"
- };
- DirectPlayProfiles = new[]
- {
- new DirectPlayProfile
- {
- Container = "mp3,flac,m4a,wma",
- Type = DlnaProfileType.Audio
- },
- };
- }
- }
- }
|