Capítulo 703 de 988

Chapter 703: webReader

Core Idea

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

Key Concepts

  • Example
  • See also

Code Examples

const result = await parseMedia({
  // Or a `File`
  src: 'https://remotion.media/video.mp4',
  fields: {
    durationInSeconds: true,
    dimensions: true,
  },
  reader: webReader,
});
  • What it demonstrates: Usage pattern for webReader from the official docs.

Key Takeaways

  1. Understand example when working with webReader.
  2. Understand see also when working with webReader.

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.