diff options
Diffstat (limited to 'scripts/manicure.rb')
-rwxr-xr-x | scripts/manicure.rb | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/scripts/manicure.rb b/scripts/manicure.rb index 4ba092b37..55a4e646c 100755 --- a/scripts/manicure.rb +++ b/scripts/manicure.rb @@ -342,6 +342,11 @@ class Display commandString << " -I" end + # 64-bit files + if hash["Mp4LargeFile"].to_i == 1 + commandString << " -4" + end + #Cropping if !hash["PictureAutoCrop"].to_i commandString << " --crop " @@ -483,6 +488,11 @@ class Display commandString << " -I" end + # 64-bit files + if hash["Mp4LargeFile"].to_i == 1 + commandString << " -4" + end + #Cropping if !hash["PictureAutoCrop"].to_i commandString << " --crop " @@ -581,6 +591,11 @@ class Display commandString << "job->ipod_atom = 1;\n " end + # 64-bit files + if hash["Mp4LargeFile"].to_i == 1 + commandString << "job->largeFileSize = 1;\n" + end + #Video encoder if hash["VideoEncoder"] != "FFmpeg" commandString << "vcodec = " @@ -803,6 +818,11 @@ class Display commandString << " -I" end + # 64-bit files + if hash["Mp4LargeFile"].to_i == 1 + commandString << " -4" + end + #Cropping if !hash["PictureAutoCrop"].to_i commandString << " --crop " |