Disabled ffprobe on iso's until i've fully tested it
This commit is contained in:
parent
863ca986bd
commit
882e364326
|
@ -7,6 +7,7 @@ using MediaBrowser.Common.Logging;
|
|||
using MediaBrowser.Controller.Events;
|
||||
using MediaBrowser.Controller.FFMpeg;
|
||||
using MediaBrowser.Model.Entities;
|
||||
using System.IO;
|
||||
|
||||
namespace MediaBrowser.Controller.Providers
|
||||
{
|
||||
|
@ -37,6 +38,12 @@ namespace MediaBrowser.Controller.Providers
|
|||
return;
|
||||
}
|
||||
|
||||
// For now
|
||||
if (Path.GetExtension(video.Path).EndsWith("iso", StringComparison.OrdinalIgnoreCase))
|
||||
{
|
||||
return;
|
||||
}
|
||||
|
||||
if (CanSkip(video))
|
||||
{
|
||||
return;
|
||||
|
|
Loading…
Reference in New Issue
Block a user