Export High-Bit-Depth AVIF from Capture One

This article outlines the optimal workflow for converting high-bit-depth master images from Capture One into the modern AVIF format. Because Capture One does not natively export to AVIF, the process requires exporting an uncompressed 16-bit intermediate file and encoding it using dedicated command-line utilities or graphical converters to preserve wide color gamuts and smooth tonal gradations.

1. Configure the Capture One Export Recipe

To produce a true high-bit-depth master, you must avoid data loss during the initial export stage.

2. Choose an AVIF Encoding Tool

AVIF supports 8, 10, and 12-bit color depths. For photography masters, 10-bit or 12-bit encoding is necessary to eliminate color banding while maintaining efficient compression.

3. Encode the Intermediate File

Using the reference encoder avifenc delivers the most reliable conversion of ICC color profiles and high bit depths. Run the following command in your terminal:

avifenc --depth 10 --yuv 444 --min 0 --max 63 -a cq-level=18 -s 4 input.tif output.avif

4. Automate the Workflow in Capture One

To streamline the conversion into a single step:

  1. Create a script (Bash on macOS/Linux or a .bat file on Windows) that watches an export directory or accepts an input file argument to run the avifenc command.
  2. In Capture One's Export Recipe under Open With, select your conversion script or executable.
  3. Once configured, triggering an export in Capture One automatically generates the 16-bit TIFF and triggers the AVIF transcode without manual terminal intervention.