Merge pull request #1234 from ljani/kodi-embedded-subs

Add support for embedded subtitles in Kodi's DLNA profile
This commit is contained in:
Luke 2015-11-06 10:06:32 -05:00
commit dc6c57700e
2 changed files with 16 additions and 0 deletions

View file

@ -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 = "",
}
};
}

View file

@ -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>