|
@@ -466,7 +466,10 @@ namespace MediaBrowser.Model.Dlna
|
|
|
{
|
|
|
if (!IsBitrateLimitExceeded(item, options.GetMaxBitrate(true) ?? 0))
|
|
|
{
|
|
|
- if (options.EnableDirectStream)
|
|
|
+ // Note: as of 10.10 codebase, the options.EnableDirectStream is always false due to
|
|
|
+ // "direct-stream http streaming is currently broken"
|
|
|
+ // Don't check that option for audio as we always assume that is supported
|
|
|
+ if (transcodeReasons == TranscodeReason.ContainerNotSupported)
|
|
|
{
|
|
|
return (directPlayProfile, PlayMethod.DirectStream, transcodeReasons);
|
|
|
}
|