Page 1 of 1

Filesize different using Preset?

Posted: Tue Apr 15, 2008 5:27 pm
by ronnor
Any idea why using a CLI Preset produces a much smaller file than the equivalent variables?

Example:

Code: Select all

HandBrakeCLI -i somedir -o somefile.m4v -Z --AppleTV -2 -T -L
produces a file 768MB

The longer equivalent (which I found on this forum)

Code: Select all

HandBrakeCLI -i somedir -o somefile.m4v -e x264 -b 2500 -E aac+ac3 -f mp4 -4 -m -p -x bframes=3:ref=1:subme=5:me=umh:no-fast-pskip=1:trellis=1:cabac=0 -2 -T -L
produces a file 2.09GB

Re: Filesize different using Preset?

Posted: Tue Apr 15, 2008 5:48 pm
by jbrjake
ronnor wrote:Any idea why using a CLI Preset produces a much smaller file than the equivalent variables?
Because you don't know how to read.
The CLI documentation wrote:To use a preset, type, for example:

Code: Select all

./HamdNrakeCLI -i /Volumes/DVD -o movie.mp4 --preset="iPhone / iPod Touch" 
So it's:

Code: Select all

--preset="Preset Name"

Re: Filesize different using Preset?

Posted: Tue Apr 15, 2008 6:26 pm
by ronnor
Thanks for your reply, but that appears to have no bearing on the file size. When I added the quotes, the file size is exactly the same.

Also, CLI seems to run fine without the quotes.

Re: Filesize different using Preset?

Posted: Tue Apr 15, 2008 6:27 pm
by nightstrm
ronnor wrote:Thanks for your reply, but that appears to have no bearing on the file size. When I added the quotes, the file size is exactly the same.

Also, CLI seems to run fine without the quotes.
This
--AppleTV
Should be this
--preset="AppleTV"

Re: Filesize different using Preset?

Posted: Tue Apr 15, 2008 7:22 pm
by jbrjake
ronnor wrote:Thanks for your reply, but that appears to have no bearing on the file size. When I added the quotes, the file size is exactly the same.
Thanks for your reply, but that appears to have no bearing on what you were told to do.

Re: Filesize different using Preset?

Posted: Tue Apr 15, 2008 8:05 pm
by ronnor
Wow, Jon. You wake up on the wrong side of the bed or what?

Thanks for your help.