[go: up one dir, main page]

Skip to content

Commit

Permalink
Merge pull request #636 from cvium/fix_subtitle_conversion_direct_str…
Browse files Browse the repository at this point in the history
…eaming

Allow subtitle extraction and conversion in direct streaming
  • Loading branch information
nvllsvm authored Jan 20, 2019
2 parents 1ac8c49 + 4a33de8 commit db6c171
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion MediaBrowser.MediaEncoding/Encoder/MediaEncoder.cs
Original file line number Diff line number Diff line change
Expand Up @@ -1018,7 +1018,8 @@ public IEnumerable<string> GetPrimaryPlaylistVobFiles(string path, IIsoMount iso

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
Expand Down

0 comments on commit db6c171

Please sign in to comment.