Sample check reduced to 3 minutes

This commit is contained in:
Mark McDowall 2013-01-25 23:18:42 -08:00
commit 3b16d68d0b
2 changed files with 6 additions and 6 deletions

View file

@ -114,7 +114,7 @@ namespace NzbDrone.Core.Providers
long size = _diskProvider.GetSize(filePath);
var runTime = _mediaInfoProvider.GetRunTime(filePath);
if(size < Constants.IgnoreFileSize && runTime < 480)
if(size < Constants.IgnoreFileSize && runTime < 180)
{
Logger.Trace("[{0}] appears to be a sample. skipping.", filePath);
return null;