- add an option for dropping specific subtitle formats using the DLNA SubtitleProfile

This commit is contained in:
Marius Luca
2021-11-28 11:42:51 +02:00
parent 13ac3e3665
commit 7d86ef6f22
3 changed files with 15 additions and 3 deletions

View File

@@ -25,6 +25,11 @@ namespace MediaBrowser.Model.Dlna
/// <summary>
/// Serve the subtitles as a separate HLS stream.
/// </summary>
Hls = 3
Hls = 3,
/// <summary>
/// Drop the subtitle.
/// </summary>
Drop = 4
}
}