diff options
author | jbrjake <[email protected]> | 2007-12-13 13:55:56 +0000 |
---|---|---|
committer | jbrjake <[email protected]> | 2007-12-13 13:55:56 +0000 |
commit | 98929d2b4c34f87899a212e865b55a273ac46a0e (patch) | |
tree | 0b771425332f0014b5b58a5cd0667f41913f5915 /scripts | |
parent | 4247f9c145c7c5ef5f35e0ae5bdd0bd50e0c237c (diff) |
Updates manicure for the new default CRF setting in the CLI, so it doesn't add a -Q.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@1122 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/manicure.rb | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/scripts/manicure.rb b/scripts/manicure.rb index 913022f1f..7c398e573 100755 --- a/scripts/manicure.rb +++ b/scripts/manicure.rb @@ -234,7 +234,7 @@ class PresetClass when 1 commandString << " -b " << hash["VideoAvgBitrate"] when 2 - commandString << " -q " << hash["VideoQualitySlider"] << " -Q" + commandString << " -q " << hash["VideoQualitySlider"] end #FPS @@ -374,7 +374,7 @@ class PresetClass when 1 commandString << " -b " << hash["VideoAvgBitrate"] when 2 - commandString << " -q " << hash["VideoQualitySlider"] << " -Q" + commandString << " -q " << hash["VideoQualitySlider"] end #FPS @@ -678,7 +678,7 @@ class PresetClass when 1 commandString << " -b " << hash["VideoAvgBitrate"] when 2 - commandString << " -q " << hash["VideoQualitySlider"] << " -Q " + commandString << " -q " << hash["VideoQualitySlider"] end #FPS |