allow specification of probing support

This commit is contained in:
Luke Pulverenti
2016-10-20 14:02:42 -04:00
parent ccaf2f43a6
commit 821d950234
9 changed files with 20 additions and 11 deletions

View File

@@ -140,7 +140,7 @@ namespace MediaBrowser.Server.Implementations.LiveTv
try
{
if (stream.MediaStreams.Any(i => i.Index != -1))
if (!stream.SupportsProbing || stream.MediaStreams.Any(i => i.Index != -1))
{
await AddMediaInfo(stream, isAudio, cancellationToken).ConfigureAwait(false);
}