ME

Media Parser

@remotion/media-parser

A pure JavaScript library for parsing video files

Animation
remotion
ffmpeg
video
react
player
@remotion/media-parser
Animation
javascript
npm
frontend
Stars
1
Weekly
0
Open issues
0
Bundle
~60 kB

Installation

npm install @remotion/media-parser

Code example

import { motion } from "@remotion/media-parser";

export function Example() {
  return (
    <motion.div
      initial={{ opacity: 0, y: 12 }}
      animate={{ opacity: 1, y: 0 }}
      transition={{ duration: 0.35 }}
    >
      <h2>Animated with Media Parser</h2>
    </motion.div>
  );
}

Pros & cons

Pros

  • Actively maintained by Jonny Burger <jonny@remotion.dev>
  • 0 weekly downloads. Battle tested
  • Remotion License https://remotion.dev/license licensed

Considerations

  • Adds roughly ~60 kB to your bundle
  • Needs client-only rendering in SSR frameworks
  • Not supported in React Native
  • 0 open issues on GitHub

FAQs

Alternatives & similar libraries