How to add all titles to queue in Handbrake on OS X

16

2

How do I easily add all titles to the queue in Handbrake on OS X and ideally automatically include the title number in the file name as well?

Pram

Posted 2010-09-20T11:30:29.167

Reputation: 418

Can you not just from from chapter X to chapter Y in one go? Handbrake will automatically add chapter marks for navigation. If you're trying to make each chapter a separate file I don't think there's an easy way to do this from the Handbrake UI. – Ian C. – 2010-09-20T14:15:06.613

What's happening is that I put in the DVD and each of the chapters is listed in the dropdown. I have to then navigate to each chapter, change the filename and add each to the queue indivually. A bit of a pain. – Pram – 2010-09-20T14:41:34.010

But you can pick a start and end chapter and rip it all as one big file. There's no way to have it do auto-naming the way you're asking for AFAIK. – Ian C. – 2010-09-20T15:43:25.813

Also, have a look at some of the nightly builds. – Sam – 2012-12-31T04:28:02.410

Answers

13

From the Handbrake manual, if you tick the checkbox "Use Auto Naming..." it will add title numbers to each file name when it adds it to the queue. I usually use this, then delete those I don't want from the queue.

Auto Naming output files HandBrake has the ability to automatically name the output file when you change the "Title" dropdown.

This feature can be controlled in HandBrakes Preferences window.

rollOver

Posted 2010-09-20T11:30:29.167

Reputation: 131

13

On the File menu, there's an Add All Titles To Queue... option.

Matt Holgate

Posted 2010-09-20T11:30:29.167

Reputation: 266

3I don't get why this was downvoted - of all the answers here, this is the only one that actually helped me. – fluffy – 2014-08-10T22:17:47.483

1Note, for me if I didn't have "Use auto naming..." checked in prefs the Add All Titles function crashes handbrake. – billynoah – 2014-09-07T20:09:03.393

1It is visible if you press option (alt) – leon – 2019-04-24T03:35:26.727

1

Remember to properly select the language(s) you want in the Preferences, because it gets resetted to the defaults no matter what you select prior to clicking the "Add all titles to queue" option. See: https://trac.handbrake.fr/wiki/Queue

– Benoit Duffez – 2014-06-08T19:46:31.087

8

To do large batches of titles without a lot of manual work, download the command line version of Handbrake and then run a script, e.g.

#!/bin/bash
for i in {2..70}
do
   echo Doing track number $i...
   ./HandBrakeCLI -t $i -i /Volumes/MX1-0N-NW1_DES --preset iPad -o X-Men_Vol1_Disk1_Title$i.mp4
done

Tom Rowe

Posted 2010-09-20T11:30:29.167

Reputation: 81

1

those are titles, not chapters in the dropdown. You can set it to append the title number after your preset filename ({source}{title}{chapters}), but I haven't figured out how to make them do all of them without pulling down each one.

potchie

Posted 2010-09-20T11:30:29.167

Reputation: 11