Back to Remotion

getAvailableContainers()

packages/docs/docs/webcodecs/get-available-containers.mdx

4.0.470899 B
Original Source

:::warning We are phasing out Remotion WebCodecs and are moving to Mediabunny! :::

Returns an array of available containers that can be used with the convertMedia function.

tsx
import {getAvailableContainers} from '@remotion/webcodecs';

const containers = getAvailableContainers();
console.log(containers);

:::note New containers may be added to this function and it will not be considered a breaking change. :::

As a type

If you need a TypeScript type that covers the available output containers, you can import the type definition:

tsx
import type {ConvertMediaContainer} from '@remotion/webcodecs';
//                 ^?

See also