From 04d2e20d5090fb00913156fe781dde73ff220874 Mon Sep 17 00:00:00 2001 From: jbrjake Date: Mon, 18 Feb 2008 23:01:33 +0000 Subject: Use 64-bit MP4 containers for the AppleTV preset, in case the 2500kb/s video and 448kb/s AC3 and 160kb/s AAC push the file size over 4 gigs for long movies. git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@1291 b64f7644-9d1e-0410-96f1-a4d463321fa5 --- scripts/manicure.rb | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) (limited to 'scripts') 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 " -- cgit v1.2.3