Add support for embedded subtitles in Kodi's DLNA profile

This commit is contained in:
Jani 2015-10-28 19:16:13 +02:00
parent 6e463ef70a
commit 421c743faa
2 changed files with 16 additions and 0 deletions

View File

@ -90,6 +90,20 @@ namespace MediaBrowser.Dlna.Profiles
{ {
Format = "sub", Format = "sub",
Method = SubtitleDeliveryMethod.External, 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> <SubtitleProfiles>
<SubtitleProfile format="srt" method="External" /> <SubtitleProfile format="srt" method="External" />
<SubtitleProfile format="sub" method="External" /> <SubtitleProfile format="sub" method="External" />
<SubtitleProfile format="srt" method="Embed" didlMode="" />
<SubtitleProfile format="sub" method="Embed" didlMode="" />
</SubtitleProfiles> </SubtitleProfiles>
</Profile> </Profile>