update subtitle conversion

This commit is contained in:
Luke Pulverenti 2015-07-28 15:54:45 -04:00
parent a28feadfac
commit 7a74213914

View file

@ -72,6 +72,12 @@ namespace MediaBrowser.Server.Implementations.Library
private bool InternalTextStreamSupportsExternalStream(MediaStream stream)
{
// These usually have styles and fonts that won't convert to text very well
if (string.Equals(stream.Codec, "ass", StringComparison.OrdinalIgnoreCase))
{
return false;
}
return true;
}