Change CanExtractSubtitles to true to allow conversion during direct streaming

This commit is contained in:
Claus Vium 2019-01-20 21:03:18 +01:00
parent 3a6624f701
commit e8cf72e925
1 changed files with 2 additions and 1 deletions

View File

@ -1018,7 +1018,8 @@ namespace MediaBrowser.MediaEncoding.Encoder
public bool CanExtractSubtitles(string codec) public bool CanExtractSubtitles(string codec)
{ {
return false; // TODO is there ever a case when a subtitle can't be extracted??
return true;
} }
private class ProcessWrapper : IDisposable private class ProcessWrapper : IDisposable