Skip to content

@mediabunny/dts

Browsers have no support for the DTS audio codec in their WebCodecs implementations. This extension package provides both a decoder and encoder for use with Mediabunny, allowing you to decode and encode this codec directly in the browser. It is implemented using Mediabunny's custom coder API and uses a fast, size-optimized WASM build of FFmpeg's DTS coders under the hood.

GitHub page

Installation

This library peer-depends on Mediabunny. Install both using npm:

bash
npm install mediabunny @mediabunny/dts

Alternatively, directly include them using a script tag:

html
<script src="mediabunny.js"></script>
<script src="mediabunny-dts.js"></script>

This will expose the global objects Mediabunny and MediabunnyDts. Use mediabunny-dts.d.ts to provide types for these globals. You can download the built distribution files from the releases page.

Usage

ts
import { registerDtsDecoder, registerDtsEncoder } from '@mediabunny/dts';

registerDtsDecoder();
registerDtsEncoder();

That's it - Mediabunny now uses the registered DTS decoder and encoder automatically.

Released under the Mozilla Public License 2.0.