Table of contents
  1. Video Processing with HandBrake
    1. Installation options
    2. The HandBrake workspace
      1. Summary tab
      2. Dimensions tab
      3. Filters tab
      4. Video tab
        1. Video Encoding
        2. Frames per Second (fps)
        3. Video Quality
        4. Video Encoding Profile
      5. Audio tab
      6. Subtitles tab
      7. Chapters tab
    3. Metadata you should collect prior to transcoding:
    4. To transcode multiple videos in a batch
    5. PARADISEC Transcoding workflow to creating .MP4 (H.264) access copies for the archive
      1. Creating a preset for PARADISEC .mp4 (H.264) access videos
      2. Things to watch out for
    6. Additional resources

Video Processing with HandBrake

Last updated: 05 March 2024

HandBrake is a free, open source video transcoder that you can use on Mac, Windows, and Linux systems.

Installation options

Instructions for downloading and installing HandBrake can be found here.

The HandBrake workspace

When you open HandBrake, you are prompted to navigate to your video file. If HandBrake is already open, just drag and drop a video into the program window. You can only select or drag and drop one video at a time (jump to batch processing to read about how to transcode more than one video at a time). You will then see a workspace similar to this one (HandBrake version 1.6.1 for Mac):

Screenshot of HandBrake main workspace

Below are brief descriptions about each of the tabs found in the HandBrake workspace and how to refine the transcoding settings to create your target format.

Summary tab

Screenshot of HandBrake's summary tab

The Summary tab is the default active tab when you open a video in HandBrake. It provides an overview of selected default settings, specifically the target format (MP4, H.264), the FPS (30), audio codec (AAC), filters that are currently selected (comb detect, decomb), and the aspect ratio.

If you are happy with the default setting and the location where the file is to be written, you can just hit the Start button at the top of the window.

If you want a different format to MP4, such as MKV or WebM, you can use the dropdown menu. As for the default settings for the tick boxes, my suggestion is to leave them as they are. The same goes for the settings located right above the tabs. If you decide to create a preset to transcode a set of videos with similar encoding features, you would select it from the preset dropdown menu.

If you have specific changes to the default encoding settings, then step through the remaining tabs and make your changes.

Dimensions tab

Screenshot of HandBrake dimensions tab

In the Dimensions tab you can make changes to the aspect ratio, including adding letterbox or pillarbox. You can also crop, rotate or flip your video.

Any changes you make to these settings can be previewed in the Summary tab prior to transcoding.

Filters tab

Screenshot of HandBrake Filter tab

The Filters tab has the default settings as seen above. It is a good idea to determine if that setting is needed. If you have a progressive video, you should turn off the filters, rather than retaining the default.

Screenshot of HandBrake filters set to none

If you have an interlaced video and you wish to make it progressive you should apply the Bwdif filter as seen below.

Screenshot of HandBrake filters set to Bwdif

If you do not apply a filter when you transcode an interlaced video to progressive, you will create a video with combing artifacts, essentially horizontal lines that appear with rapid motion.

To read more about deinterlacing and detelecine, visit this site https://www.dr-lex.be/info-stuff/videotips.html#deinter.

Video tab

Screenshot of HandBrake video tab

The Video tab offers a number of parameters you can adjust.

Video Encoding

You can select different encoders from the dropdown menu as seen below:

Screenshot of HandBrake video encoder menu

It is also with this menu you can adjust your transcoding to accommodate a 10-bit source video.

Frames per Second (fps)

Here you can adjust the fps if HandBrake does not correctly capture your source frame rate.

Screenshot of HandBrake video encoder menu

Video Quality

Video quality can be changed by adjusting one of two settings:

  1. Constant Quality: setting the slider to acheive a constant rate factor (CRF):

Screenshot of HandBrake video constant quality

  1. Average BitRate: setting the average BitRate to match the overall BitRate of your source videos. You should select to run a 2-pass encoding here to ensure a better match to the target BitRate.

Video Encoding Profile

For more information on video encoding profiles, visit this site: https://streaminglearningcenter.com/codecs/beginners-guide-to-encoding-h264.html#h-264-profiles.

Audio tab

Screenshot of HandBrake audio tab

Subtitles tab

Screenshot of HandBrake subtitles tab

Chapters tab

Screenshot of HandBrake chapters tab

Metadata you should collect prior to transcoding:

Before you start transcoding, collect the important structural metadata about your video files; this will inform your workflow and whether or not you can do batch processing. This Metadata query can be done using MediaInfo on individual files, or via a batch export outlined here: MediaInfo metadata export.

  • Size/dimension - (height and width measurements, aspect ratio)
  • Framerate (fps) - (ex: 25fps, 30fps, 50fps, etc.)
  • Encoding format profile - (ex: High@L4.0)
  • BitRate - If doing batch processes with a target constant Bitrate, you will need to group your videos by Bitrate value.
  • Video scan type - Progressive or interlaced

Below is a screen shot of the type of metadata you can use to help inform your transcoding tasks.

Screenshot of Metadata spreaddheet

To transcode multiple videos in a batch

To transcode multiple videos at one time, you need to add each file one at a time to the queue. Once you have opened a video file in HandBrake (and created an appropriate preset) click on the Add to Queue button in the upper left of the workspace.

Screenshot of HandBrake chapters tab

As you add files one at a time, it is a good idea to open up your queue by clicking on Queue in the upper right of the workspace and make sure you have added all the files you intend to transcode:

Screenshot of HandBrake chapters tab

Once all your files are added to the queue, simply press Start.

PARADISEC Transcoding workflow to creating .MP4 (H.264) access copies for the archive

  1. Collect the necessary metadata for videos. Group files that have similar BitRate, fps, Aspect Ratio, Scan type, Encoding Profile, allowing you to batch encode
  2. Drag one file into HandBrake
  3. Create a preset for the set of videos that match this first file (or open a saved preset that matches the file’s features)
  4. Click on “Add To Queue” button and repeat the process of adding to the queue for each file in the set

Creating a preset for PARADISEC .mp4 (H.264) access videos

The following instructions are geared toward creating presets to transcode access videos for PARADISEC; however, this workflow will hopefully empower general users to create their own transcoded videos.

If your source file is Interlaced, you need to apply a filter to create a Progressive version. Use the Bwdif filter as mentioned above.

Below is a MediaInfo metadtata comparison of the source .MOV file on the left (with red highlights) and the transcoded .MP4 on the right (with green highlights). The highlighted items are the key specifications to aim for in order to retain quality in the transcoded file.

Screenshot of MediaInfo comparison of source and transcoded files

Things to watch out for

NOTE: There may be a mismatch in a file’s storage size and its display size as seen in the summary tab of an older .AVI video below. The file’s aspect ratio shown in the top image is correctly represented by the display size (640x480) and NOT the storage size (720x480). To check if the storage aspect is indeed incorrect, I altered the video dimensions to represent the storage size. That distortion can be seen in the bottom image. I then transcoded the file using the display size.

Screenshot of HandBrake's summary tab



Additional resources

Ozer, Jan. (2021, August 1). Beginner’s Guide to Encoding H.264. streaminglearningcenter.com. Retrieved May 30, 2023, from https://streaminglearningcenter.com/codecs/beginners-guide-to-encoding-h264.html.

Sepos, Bradley (2023). HandBrake Documentation. handbrake.fr. Retrieved May 30, 2023, from https://handbrake.fr/docs/.

Thomas, Alexander (2023, April). Video Encoding Tips. dr-lex.be. Retrieved May 30, 2023, from https://www.dr-lex.be/info-stuff/videotips.html.

⬆️ Back to top

Creative Commons License
This work was created by Julia Colleen Miller and is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License.