diff options
author | sr55 <[email protected]> | 2011-09-02 22:40:19 +0000 |
---|---|---|
committer | sr55 <[email protected]> | 2011-09-02 22:40:19 +0000 |
commit | 1d1cd92bb0a5a4af27be7e67561b96129421aa8a (patch) | |
tree | bda617871db1c52f8f534e2d8f41801dba27ebd9 /win/CS/HandBrake.ApplicationServices | |
parent | bda88d1a98a98a5ddac7087ea8b37889dd14bc7b (diff) |
WinGui: Initial support for batch queueing.
A new option "Add All" which will add all scanned titles using the current settings. Ideally used with batch scanned sources.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@4202 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'win/CS/HandBrake.ApplicationServices')
-rw-r--r-- | win/CS/HandBrake.ApplicationServices/Services/UserSettingService.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/win/CS/HandBrake.ApplicationServices/Services/UserSettingService.cs b/win/CS/HandBrake.ApplicationServices/Services/UserSettingService.cs index ace53f97f..eeb003d3c 100644 --- a/win/CS/HandBrake.ApplicationServices/Services/UserSettingService.cs +++ b/win/CS/HandBrake.ApplicationServices/Services/UserSettingService.cs @@ -205,8 +205,8 @@ namespace HandBrake.ApplicationServices.Services userSettings["AutoNameRemoveUnderscore"] = true;
userSettings["ActivityWindowLastMode"] = 0;
userSettings["useClosedCaption"] = false;
- userSettings["batchMinDuration"] = 35;
- userSettings["batchMaxDuration"] = 65;
+ userSettings["batchMinDuration"] = "00:18:00";
+ userSettings["batchMaxDuration"] = "02:30:00";
userSettings["defaultPlayer"] = false;
userSettings["SelectedLanguages"] = new StringCollection();
userSettings["DubModeAudio"] = 0;
|