Skip to main content

video-common

Shared Remotion video utilities and patterns. Referenced by other video skills - not invoked directly.

Aller à l'installation

Informations de source

Dépôt
aviz85/ai-music-video-maker
Dernière activité de la source
3 février 2026 à 02:42
Langue détectée de SKILL.md
anglais
Étoiles
4
Forks
1

Options d'installation

Le prompt qui vérifie d'abord la source est sélectionné par défaut. Vous pouvez passer à une commande directe ou télécharger une copie locale.

Vérifiez les fichiers source

Lisez SKILL.md et les fichiers associés affichés par SkillsMP avant de décider de l'installer.

Explorateur de fichiers
3 fichiers

Affichage de SKILL.md

SKILL.md
Instructions source · Aperçu en lecture seule
name
video-common
description
Shared Remotion video utilities and patterns. Referenced by other video skills - not invoked directly.
# Remotion Common Utilities Shared patterns and references for all video skills in this project. ## Project Structure ``` remotion-assistant/ ├── src/ │ ├── index.tsx # Entry point │ ├── Root.tsx # Composition registry │ ├── compositions/ # Video compositions │ └── components/ # Reusable components ├── public/ # Static assets │ ├── fonts/ │ ├── images/ │ └── audio/ └── out/ # Rendered output ``` ## Key APIs - `useCurrentFrame()` - Current frame number - `useVideoConfig()` - { width, height, fps, durationInFrames } - `interpolate(frame, [in], [out])` - Map values - `spring({ frame, fps, config })` - Physics animations ## Adding New Compositions 1. Create component in `src/compositions/` 2. Register in `src/Root.tsx` with `<Composition>` 3. Set: id, component, durationInFrames, fps, width, height ## See References - [codecs.md](references/codecs.md) - Encoding options - [animations.md](references/animations.md) - Animation patterns
Voir sur GitHub