diff options
author | sr55 <[email protected]> | 2011-07-24 16:34:44 +0000 |
---|---|---|
committer | sr55 <[email protected]> | 2011-07-24 16:34:44 +0000 |
commit | c4562d3a2a18c932e67de3d79c44b8fab242f332 (patch) | |
tree | 8b8bf28b2e45a16e3e5e4714c2777098b54efaa8 /win/CS/HandBrake.ApplicationServices/Services | |
parent | 4f0cc8d541dc2972a096b5294383b4656b5d550d (diff) |
WinGui: Add support for Minimum Duration setting for scans.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@4135 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'win/CS/HandBrake.ApplicationServices/Services')
-rw-r--r-- | win/CS/HandBrake.ApplicationServices/Services/ScanService.cs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/win/CS/HandBrake.ApplicationServices/Services/ScanService.cs b/win/CS/HandBrake.ApplicationServices/Services/ScanService.cs index 84d2a53d5..ace330c42 100644 --- a/win/CS/HandBrake.ApplicationServices/Services/ScanService.cs +++ b/win/CS/HandBrake.ApplicationServices/Services/ScanService.cs @@ -196,6 +196,8 @@ namespace HandBrake.ApplicationServices.Services extraArguments += " --no-dvdnav";
}
+ extraArguments += string.Format(" --min-duration={0}", Properties.Settings.Default.MinTitleScanDuration);
+
if (title > 0)
{
extraArguments += " --scan ";
|