Capítulo 693 de 988

Chapter 693: Runtime support

Core Idea

:::warning We are phasing out Media Parser and are moving to Mediabunny!

Key Concepts

  • Runtime versions
  • Feature detection
  • WebCodecs support
  • See also

Code Examples

const canUseMediaParser = typeof fetch === 'function' && typeof new ArrayBuffer().resize === 'function';
  • What it demonstrates: Usage pattern for Runtime support from the official docs.

Key Takeaways

  1. Understand runtime versions when working with Runtime support.
  2. Understand feature detection when working with Runtime support.
  3. Understand webcodecs support when working with Runtime support.
  4. Understand see also when working with Runtime support.

Connects To

  • Download and Parse: related page in the Media Parser (@remotion/media-parser) section.
  • Download and Parse Media: related page in the Media Parser (@remotion/media-parser) section.
  • Fast and Slow: related page in the Media Parser (@remotion/media-parser) section.