diff options
| author | Luke Pulverenti <luke.pulverenti@gmail.com> | 2015-01-11 21:19:06 -0500 |
|---|---|---|
| committer | Luke Pulverenti <luke.pulverenti@gmail.com> | 2015-01-11 21:19:06 -0500 |
| commit | 2d25be5ee868cdaf4fa52add68b2b0e4cc34d3e5 (patch) | |
| tree | f061c8edf7728eeeddbe36dc7becc9c3b2123911 | |
| parent | b6f7f0273a99f49f3218fef0374e289cca8d4b28 (diff) | |
flac fix for samsung dlna
| -rw-r--r-- | MediaBrowser.Dlna/Profiles/SamsungSmartTvProfile.cs | 7 | ||||
| -rw-r--r-- | MediaBrowser.Dlna/Profiles/Xml/Samsung Smart TV.xml | 3 |
2 files changed, 10 insertions, 0 deletions
diff --git a/MediaBrowser.Dlna/Profiles/SamsungSmartTvProfile.cs b/MediaBrowser.Dlna/Profiles/SamsungSmartTvProfile.cs index 1499d0e74..970995b7d 100644 --- a/MediaBrowser.Dlna/Profiles/SamsungSmartTvProfile.cs +++ b/MediaBrowser.Dlna/Profiles/SamsungSmartTvProfile.cs @@ -336,6 +336,13 @@ namespace MediaBrowser.Dlna.Profiles Container = "mkv", MimeType = "video/x-mkv", Type = DlnaProfileType.Video + }, + + new ResponseProfile + { + Container = "flac", + MimeType = "audio/x-flac", + Type = DlnaProfileType.Audio } }; diff --git a/MediaBrowser.Dlna/Profiles/Xml/Samsung Smart TV.xml b/MediaBrowser.Dlna/Profiles/Xml/Samsung Smart TV.xml index 27d8e00ec..d2b814de3 100644 --- a/MediaBrowser.Dlna/Profiles/Xml/Samsung Smart TV.xml +++ b/MediaBrowser.Dlna/Profiles/Xml/Samsung Smart TV.xml @@ -110,6 +110,9 @@ <ResponseProfile container="mkv" type="Video" mimeType="video/x-mkv"> <Conditions /> </ResponseProfile> + <ResponseProfile container="flac" type="Audio" mimeType="audio/x-flac"> + <Conditions /> + </ResponseProfile> </ResponseProfiles> <SubtitleProfiles> <SubtitleProfile format="srt" method="External" didlMode="CaptionInfoEx" /> |
