This page is available in English only — go to the Crate site in your language:

Documentation

Everything you need to pack, send, and restore DAW sessions with Crate.

Getting Started

Installing Crate

Download the installer for your platform from the download page:

System Requirements

PlatformMinimum versionArchitecture
macOS10.15 Catalina (2019)Apple Silicon & Intel (universal binary)
WindowsWindows 10, version 1803+64-bit (x86_64)
LinuxUbuntu 22.04+ / Debian 12+ — glibc 2.35+ and libwebkit2gtk-4.164-bit (x86_64)

No GPU required. Encoding speed scales with CPU cores — you can configure the number of parallel workers in Settings. Disk space: Crate needs roughly 1× the session size as temporary scratch space during packing. Memory: packing is the memory-intensive step, because Crate holds audio in RAM while it compresses and verifies it — peak use grows with the size of the session, and above all with the size of the largest single file in it, so RAM headroom is what lets very large sessions pack comfortably. Restoring is much lighter.

First Launch

On first launch, Crate shows a welcome screen. Crate works immediately for unpacking — no purchase required. To pack sessions, you'll need a license key.

The Interface

Crate has a single-screen interface built around drag-and-drop:

Packing a Session

  1. Drag a session folder onto the Crate window (or click the drop zone to browse)
  2. Configure pack options — Choose your codec, split size, recovery, and encryption settings in the drawer that appears
  3. Click "Pack" — Crate analyzes your files, compresses audio losslessly, and creates a .crate archive
  4. Send the file — Upload the .crate file to Google Drive, Dropbox, WeTransfer, or any method you prefer
Tip: Crate doesn't upload anything for you — it's a tool, not a platform. Use whatever transfer method works for you and the recipient.

What Gets Packed

Pack from Finder (right-click)

Crate adds Pack with Crate and Unpack with Crate to the Finder right-click menu — installed automatically the first time the app runs. Right-click a session folder and choose Pack with Crate and it packs immediately with your current default settings; no need to open the app first. Right-click a .crate file and choose Unpack with Crate to restore it. Select several items and Crate processes the whole selection, sorting folders to pack from .crate files to unpack.

Where to find it: on macOS the items appear at the top of the right-click menu (look for the cube icon). If you don't see them yet, launch Crate once so it can register them.

The menu-bar Quick Bay

Crate lives in your menu bar so a drop target is always one click away. Click the Crate icon to open the Quick Bay, drop folders onto it, and they pack on the spot. The running job shows live progress; anything else you add lines up in a reorderable queue that runs one at a time so your machine stays responsive. Drag queued jobs to reprioritize, or cancel the entire run with one click. Right-click the menu-bar icon for Settings, Check for Updates, and Quit.

Packing many folders at once

Select multiple folders (or a whole album) and pack them in a single gesture from the app, the Quick Bay, or the Finder menu. Crate asks how you'd like them handled:

Either way the jobs queue and run one at a time. Drop a mix of folders and .crate files together and Crate routes each correctly — folders are packed, archives are unpacked, nothing is skipped. Packing the same source again writes a new numbered .crate rather than overwriting the previous one.

Unpacking & Restoring

  1. Drag a .crate file onto the Crate window
  2. Choose a destination — Crate asks where to restore the session
  3. Wait for verification — Crate decompresses, restores every file, and verifies SHA-256 checksums
  4. Open your DAW — The session is byte-for-byte identical to the original
Unpacking is always free. Anyone can download Crate and unpack .crate files — no license, no account, no payment. Share this with collaborators who need to open your files.

Encrypted Archives

If the archive was encrypted, Crate will prompt for the passphrase before unpacking. You must use the exact passphrase that was set during packing.

Split Archives

If the archive was split into volumes, drag any volume onto Crate — it will automatically find and reassemble all volumes from the same directory.

Pack Options

Codec

Choose the lossless audio codec used for compression:

Both codecs are completely lossless — your audio is mathematically identical after decompression.

Advanced Options

Click "Advanced" in the pack drawer to reveal splitting, recovery, and encryption settings. These are optional and off by default.

Encode Workers

Found in Settings → Encode workers. This controls how many files Crate compresses or decompresses in parallel — one worker per file, each running on its own CPU core.

Parallelism applies to every CPU-bound phase: SHA-256 hashing, lossless encoding/decoding, and verification. For best results, set this to your total CPU cores minus 1 — this keeps one core free for the UI and system so your machine stays responsive during packing.

Tip: On a fast machine with an NVMe drive, increasing encode workers is the single biggest speed improvement you can make. If your source and destination are on the same slower drive, disk I/O may bottleneck before CPU does.

Encryption

Crate encrypts archives in-process with the modern age format — ChaCha20-Poly1305 authenticated encryption with a scrypt-derived key. The passphrase is handled entirely in memory; it never touches the command line or disk, so it can't leak through process listings or shell history.

  1. Toggle Encrypt on in pack options (under Advanced)
  2. Enter a passphrase — make it strong and memorable
  3. The recipient will need this exact passphrase to unpack
Important: A lost passphrase means an unrecoverable archive. The passphrase is never stored or transmitted by Crate. Write it down or share it securely with the recipient through a separate channel (text message, phone call, etc.).

Splitting into Volumes

Split large archives into smaller volumes for easier uploading:

Tip: Splitting is especially useful for services with file size limits (email attachments, free-tier cloud storage) or unreliable connections where a large upload might fail partway through.

Recovery Records (PAR2)

Recovery records add error-correction data so a partially corrupted or incomplete transfer can self-repair without re-downloading.

Recovery adds roughly the chosen percentage to the archive size. For a 1 GB archive with 5% recovery, expect about 1.05 GB total.

Verification & Integrity

Every file packed by Crate gets a SHA-256 checksum. On unpack, every file is verified against its checksum. If even one bit is wrong, Crate reports it immediately.

What This Means

Can audio shift or go out of phase?

No — it is mathematically impossible. This is a common and valid concern, especially if you've worked with lossy codecs that add encoder delay or padding. Here's why Crate is different:

Crate verifies the decoded output twice — once at pack time (with verification on, the default) and once at restore time, always. The verification is a byte-for-byte SHA-256 comparison against the original file. This means every single byte must match: the audio samples, the header, the metadata chunks, everything. If even one sample shifted position, the hash would not match.

When a hash mismatch is detected at pack time, Crate automatically falls back to passthrough — storing the file verbatim instead of compressed. The file still arrives byte-perfect; it just doesn't benefit from compression. This "correctness over size" policy means Crate will never ship a file that doesn't match the original.

Bottom line: Crate doesn't ask you to trust the codec — it proves the result is correct. The SHA-256 hash is the proof. If it passes, the file is identical. If it doesn't pass, the file is stored raw instead.

Verify it yourself — with your own tools, not ours

You never have to trust Crate's internal check. Pack a session, restore it to a new folder, then hash both folders with your operating system's own tooling and compare. An empty diff means every byte is identical — proven independently of Crate.

# Pack (verification is "full" by default), then restore to a fresh folder.
# Then compare the two trees with the OS's own SHA-256 — never Crate's:

# macOS / Linux
( cd "My Session" && find . -type f ! -name .DS_Store -exec shasum -a 256 {} \; ) | sort > original.txt
( cd "Restored"   && find . -type f ! -name .DS_Store ! -name 'CRATE-*' -exec shasum -a 256 {} \; ) | sort > restored.txt
diff original.txt restored.txt && echo "byte-identical ✓"

# Windows (PowerShell)
Get-ChildItem -Recurse -File "My Session" | Get-FileHash -Algorithm SHA256 | Sort-Object Hash

We ran exactly this on a real 1.2 GB Pro Tools mix session (600+ files): every file confirmed identical by the OS itself, while the session shrank ~60%. The point isn't that we say it's bit-perfect — it's that your computer agrees, using tools we have no hand in.

Never locked in

The same open-tools spirit applies to the format itself: a .crate is a standard 7-Zip container of standard FLAC/WavPack audio plus a readable JSON manifest, and a Standard-preset pack opens today with free 7-Zip and the free codec tools — no Crate software required. Read the full no-lock-in story, including the release gate and sunset pledge that cover every compression tier.

Licensing

How Licensing Works

Activating Your License

  1. Open Crate and click the gear icon (Settings)
  2. Go to the License section
  3. Paste your license key (starts with CRATE1.)
  4. Click Activate — packing is now unlocked

Lost Your License Key?

Your license key was emailed to you after purchase. If you can't find it:

  1. Check your spam/junk folder for an email from Crate
  2. Use the license recovery tool — enter your purchase email and we'll re-send your key
  3. In the app, click "Lost your key?" in Settings → License to email support directly

Buying a License

Purchase at crate.fluxcode.studio. We use Purchasing Power Parity pricing — the price adjusts based on your country so Crate is accessible everywhere.

Supported Formats

Losslessly Compressed (audio)

FormatCodecNotes
WAV (integer PCM)FLAC8/16/24/32-bit; all foreign chunks preserved (BWF, iXML, cue, etc.)
AIFF (integer PCM)FLACAll foreign chunks preserved
AIFF-C (e.g. Logic sowt)WavPackWrapper preserved byte-for-byte
WAV / AIFF (float 32/64)WavPackFLAC can't carry float losslessly
CAF (Core Audio)WavPackFLAC foreign-metadata is WAV/AIFF only
Wave64 (W64)WavPackByte-perfect round-trip
RF64 / BW64 (>4 GB)PassthroughStored byte-exact; no codec handles these reliably
>8 channelsWavPack or passthroughFLAC limited to 8 channels

Stored As-Is (already compressed or non-audio)

Compatible DAWs

Crate is DAW-agnostic — it works at the file level. Any DAW that saves files to disk works with Crate:

Pro Tools · Logic Pro · Ableton Live · Cubase · Nuendo · Studio One · Reaper · FL Studio · Bitwig · Pyramix · SADiE · and more

Troubleshooting

"Pack" button is disabled

You need an active license to pack. Go to Settings → License and paste your key. If you don't have one, purchase a license.

macOS: "Crate can't be opened because it is from an unidentified developer"

Crate is signed and notarized by Apple. If you still see this message, right-click the app and choose Open, then click Open in the dialog. This only needs to be done once.

Windows: SmartScreen warning

Windows may show a SmartScreen warning for new software. Click "More info" then "Run anyway". This is normal for new applications and will resolve as Crate gains reputation with Microsoft.

Archive won't unpack — "checksum mismatch"

The file was corrupted during transfer. Options:

Archive won't unpack — "wrong passphrase"

The archive was encrypted and you're entering the wrong passphrase. Passphrases are case-sensitive. Contact the sender for the correct passphrase.

Missing volumes

If a split archive is missing volumes, Crate will tell you which ones are missing. Download the missing volumes and place them in the same folder as the others.

Session won't relink in my DAW

Crate restores files to the exact same relative paths. If your DAW can't find files:

Packing is slow

Compression speed depends on your CPU and disk speed. Tips:

Keyboard Shortcuts

Need Support?

Can't find the answer here? Open a support request and we'll get back to you within 1–2 business days. License holders get priority support.

Contact Support

This page is available in English only — go to the Crate site in your language: