diff options
Diffstat (limited to 'scripts/manicure.rb')
-rwxr-xr-x | scripts/manicure.rb | 19 |
1 files changed, 18 insertions, 1 deletions
diff --git a/scripts/manicure.rb b/scripts/manicure.rb index ae1139bb0..f808b27f7 100755 --- a/scripts/manicure.rb +++ b/scripts/manicure.rb @@ -311,6 +311,10 @@ class Display else commandString << " -r " << hash["VideoFramerate"] end + + if hash["VideoFrameratePFR"] == 1 + commandString << " --pfr " + end end #Audio tracks @@ -554,6 +558,10 @@ class Display else commandString << " -r " << hash["VideoFramerate"] end + + if hash["VideoFrameratePFR"] == 1 + commandString << " --pfr " + end end #Audio tracks @@ -790,7 +798,12 @@ class Display commandString << "job->vrate_base = " << "1080000\n " # Gotta add the rest of the framerates for completion's sake. end - commandString << "job->cfr = 1;\n " + + if hash["VideoFrameratePFR"] == 1 + commandString << "job->cfr = 2;\n " + else + commandString << "job->cfr = 1;\n " + end end #Audio tracks @@ -1066,6 +1079,10 @@ class Display else commandString << " -r " << hash["VideoFramerate"] end + + if hash["VideoFrameratePFR"] == 1 + commandString << " --pfr " + end end #Audio tracks |