diff options
| author | Fredrik Zetterlund <z@7illusions.com> | 2015-01-02 11:00:24 +0100 |
|---|---|---|
| committer | Fredrik Zetterlund <z@7illusions.com> | 2015-01-02 11:00:24 +0100 |
| commit | 4b1962d779cb91bfa5fd19687c0635ff7759ca74 (patch) | |
| tree | 41818eec0d6ca1f0eb28b4da42aa8ea0c31bc2ef | |
| parent | c63c39ce57dc6a22058da227a11ef1d62f28f627 (diff) | |
Update Windows81Profile.cs
Removed .mov and added m4a to DirectPlay profiles
| -rw-r--r-- | MediaBrowser.Dlna/Profiles/Windows81Profile.cs | 12 |
1 files changed, 10 insertions, 2 deletions
diff --git a/MediaBrowser.Dlna/Profiles/Windows81Profile.cs b/MediaBrowser.Dlna/Profiles/Windows81Profile.cs index 056f76f79..60c5990fe 100644 --- a/MediaBrowser.Dlna/Profiles/Windows81Profile.cs +++ b/MediaBrowser.Dlna/Profiles/Windows81Profile.cs @@ -7,7 +7,7 @@ namespace MediaBrowser.Dlna.Profiles [XmlRoot("Profile")] public class Windows81Profile : DefaultProfile { - public Windows81Profile() + public Windows81Profile() { Name = "Windows 8/RT"; @@ -55,7 +55,7 @@ namespace MediaBrowser.Dlna.Profiles { new DirectPlayProfile { - Container = "mp4,mov", + Container = "mp4", VideoCodec = "h264,mpeg4", AudioCodec = "aac,ac3,eac3,mp3,pcm", Type = DlnaProfileType.Video @@ -101,6 +101,14 @@ namespace MediaBrowser.Dlna.Profiles new DirectPlayProfile { + Container = "m4a", + AudioCodec = "aac", + VideoCodec = "", + Type = DlnaProfileType.Audio + }, + + new DirectPlayProfile + { Container = "jpeg", Type = DlnaProfileType.Photo } |
