# Remotion Rule: Get Video Dimensions > Remotion skill rule: Getting the width and height of a video file with Mediabunny. Part of the official Remotion Agent Skill for programmatic video in React. ## Install Save the content below to `.claude/skills/` or append to your `CLAUDE.md`: ## Quick Use ```bash npx skills add remotion-dev/skills ``` This rule activates automatically when working with get video dimensions in a Remotion project. --- ## Intro Getting the width and height of a video file with Mediabunny. Part of the [Remotion AI Skill](https://tokrepo.com/en/workflows/57997ead-c8fa-409c-916f-28bbc0adc8d9) — the official Agent Skill for programmatic video creation in React. **Best for**: Developers using Remotion for get video dimensions **Works with**: Claude Code, OpenAI Codex, Cursor --- ## Rule Content # Getting video dimensions with Mediabunny Mediabunny can extract the width and height of a video file. It works in browser, Node.js, and Bun environments. ## Getting video dimensions ```tsx import { Input, ALL_FORMATS, UrlSource } from "mediabunny"; export const getVideoDimensions = async (src: string) => { const input = new Input({ formats: ALL_FORMATS, source: new UrlSource(src, { getRetryDelay: () => null, }), }); const videoTrack = await input.getPrimaryVideoTrack(); if (!videoTrack) { throw new Error("No video track found"); } return { width: videoTrack.displayWidth, height: videoTrack.displayHeight, }; }; ``` ## Usage ```tsx const dimensions = await getVideoDimensions("https://remotion.media/video.mp4"); console.log(dimensions.width); // e.g. 1920 console.log(dimensions.height); // e.g. 1080 ``` ## Using with local files For local files, use `FileSource` instead of `UrlSource`: ```tsx import { Input, ALL_FORMATS, FileSource } from "mediabunny"; const input = new Input({ formats: ALL_FORMATS, source: new FileSource(file), // File object from input or drag-drop }); const videoTrack = await input.getPrimaryVideoTrack(); const width = videoTrack.displayWidth; const height = videoTrack.displayHeight; ``` ## Using with staticFile in Remotion ```tsx import { staticFile } from "remotion"; const dimensions = await getVideoDimensions(staticFile("video.mp4")); ``` --- ## Source & Thanks > Created by [Remotion](https://github.com/remotion-dev). Licensed under MIT. > [remotion-dev/skills](https://github.com/remotion-dev/skills) — Rule: `get-video-dimensions` Part of the [Remotion AI Skill](https://tokrepo.com/en/workflows/57997ead-c8fa-409c-916f-28bbc0adc8d9) collection on TokRepo. --- Source: https://tokrepo.com/en/workflows/e3257fe7-9ff7-49d7-a804-a914c52ce625 Author: Skill Factory