23

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
  • 518

6 Answers6

18

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

15

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
  • 151
9

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
2

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
  • 21
  • 2
0

In HandBrake 1.0.7 for Windows, one can use: Add to Queue -> Add All.

enter image description here

Franck Dernoncourt
  • 24,246
  • 64
  • 231
  • 400
0
  1. In the Handbrake menu, click Settings...

enter image description here

  1. Enable Automatically name output files:

enter image description here

  1. Open the File menu:

enter image description here

  1. Press your keyboard's option key and keep it pressed, the menu magically changes to this:

enter image description here

  1. Click Add All Titles to Queue
Nicolas Raoul
  • 11,561