diff options
Diffstat (limited to 'scripts/manicure.rb')
-rwxr-xr-x | scripts/manicure.rb | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/scripts/manicure.rb b/scripts/manicure.rb index f458aec1d..5ca5b8b26 100755 --- a/scripts/manicure.rb +++ b/scripts/manicure.rb @@ -483,7 +483,7 @@ class Display if hash["VideoTwoPass"] == 1 then commandString << " -2" end if hash["VideoTurboTwoPass"] == 1 then commandString << " -T" end - #x264 Options + #Advanced Options if hash["x264Option"] != "" commandString << " -x " commandString << hash["x264Option"] @@ -731,7 +731,7 @@ class Display if hash["VideoTwoPass"] == 1 then commandString << " -2" end if hash["VideoTurboTwoPass"] == 1 then commandString << " -T" end - #x264 Options + #Advanced Options if hash["x264Option"] != "" commandString << " -x " commandString << hash["x264Option"] @@ -938,11 +938,11 @@ class Display end end - #x264 Options + #Advanced Options if hash["x264Option"] != "" - commandString << "if( !x264opts )\n " + commandString << "if( !advanced_opts )\n " commandString << "{\n " - commandString << " x264opts = strdup(\"" + commandString << " advanced_opts = strdup(\"" commandString << hash["x264Option"] << "\");\n " commandString << "}\n " end @@ -1256,7 +1256,7 @@ class Display if hash["VideoTwoPass"] == 1 then commandString << " -2" end if hash["VideoTurboTwoPass"] == 1 then commandString << " -T" end - #x264 Options + #Advanced Options if hash["x264Option"] != "" commandString << " -x " commandString << hash["x264Option"] |