mirror of
https://github.com/affaan-m/everything-claude-code.git
synced 2026-04-14 13:53:29 +08:00
Ports functionality from 10+ separate plugins into ECC so users only need one plugin installed. Consolidates: pr-review-toolkit, feature-dev, commit-commands, hookify, code-simplifier, security-guidance, frontend-design, explanatory-output-style, and personal skills. New agents (8): code-architect, code-explorer, code-simplifier, comment-analyzer, conversation-analyzer, pr-test-analyzer, silent-failure-hunter, type-design-analyzer New commands (9): commit, commit-push-pr, clean-gone, review-pr, feature-dev, hookify, hookify-list, hookify-configure, hookify-help New skills (8): frontend-design, hookify-rules, github-ops, knowledge-ops, lead-intelligence, oura-health, pmx-guidelines, remotion Enhanced skills (8): article-writing, content-engine, market-research, investor-materials, investor-outreach, x-api, security-scan, autonomous-loops — merged with personal skill content New hook: security-reminder.py (pattern-based OWASP vulnerability warnings on file edits) Totals: 36 agents, 69 commands, 128 skills, 29 hook scripts
69 lines
1.6 KiB
Markdown
69 lines
1.6 KiB
Markdown
---
|
|
name: get-video-dimensions
|
|
description: Getting the width and height of a video file with Mediabunny
|
|
metadata:
|
|
tags: dimensions, width, height, resolution, size, video
|
|
---
|
|
|
|
# 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"));
|
|
```
|