diff options
| author | Luke Pulverenti <luke.pulverenti@gmail.com> | 2015-11-25 12:19:07 -0500 |
|---|---|---|
| committer | Luke Pulverenti <luke.pulverenti@gmail.com> | 2015-11-25 12:19:07 -0500 |
| commit | d6da64852052b9637fedcafd9419486412ecf9b9 (patch) | |
| tree | 18598608183fbd413d0be65596e350d3773804a9 | |
| parent | 9b52c7fe3781160767d84d20727ddcc84094d08e (diff) | |
update kodi profile
| -rw-r--r-- | MediaBrowser.Dlna/Profiles/KodiProfile.cs | 14 | ||||
| -rw-r--r-- | MediaBrowser.Dlna/Profiles/Xml/Kodi.xml | 2 |
2 files changed, 16 insertions, 0 deletions
diff --git a/MediaBrowser.Dlna/Profiles/KodiProfile.cs b/MediaBrowser.Dlna/Profiles/KodiProfile.cs index 75c323a1ad..a039a26f44 100644 --- a/MediaBrowser.Dlna/Profiles/KodiProfile.cs +++ b/MediaBrowser.Dlna/Profiles/KodiProfile.cs @@ -90,6 +90,20 @@ namespace MediaBrowser.Dlna.Profiles { Format = "sub", Method = SubtitleDeliveryMethod.External, + }, + + new SubtitleProfile + { + Format = "srt", + Method = SubtitleDeliveryMethod.Embed, + DidlMode = "", + }, + + new SubtitleProfile + { + Format = "sub", + Method = SubtitleDeliveryMethod.Embed, + DidlMode = "", } }; } diff --git a/MediaBrowser.Dlna/Profiles/Xml/Kodi.xml b/MediaBrowser.Dlna/Profiles/Xml/Kodi.xml index a174610cb5..42a255a377 100644 --- a/MediaBrowser.Dlna/Profiles/Xml/Kodi.xml +++ b/MediaBrowser.Dlna/Profiles/Xml/Kodi.xml @@ -51,5 +51,7 @@ <SubtitleProfiles> <SubtitleProfile format="srt" method="External" /> <SubtitleProfile format="sub" method="External" /> + <SubtitleProfile format="srt" method="Embed" didlMode="" /> + <SubtitleProfile format="sub" method="Embed" didlMode="" /> </SubtitleProfiles> </Profile>
\ No newline at end of file |
