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
- Understand runtime versions when working with Runtime support.
- Understand feature detection when working with Runtime support.
- Understand webcodecs support when working with Runtime support.
- 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.