mirror of
https://github.com/affaan-m/everything-claude-code.git
synced 2026-04-12 20:53:34 +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
79 lines
1.6 KiB
Markdown
79 lines
1.6 KiB
Markdown
---
|
|
name: assets
|
|
description: Importing images, videos, audio, and fonts into Remotion
|
|
metadata:
|
|
tags: assets, staticFile, images, fonts, public
|
|
---
|
|
|
|
# Importing assets in Remotion
|
|
|
|
## The public folder
|
|
|
|
Place assets in the `public/` folder at your project root.
|
|
|
|
## Using staticFile()
|
|
|
|
You MUST use `staticFile()` to reference files from the `public/` folder:
|
|
|
|
```tsx
|
|
import {Img, staticFile} from 'remotion';
|
|
|
|
export const MyComposition = () => {
|
|
return <Img src={staticFile('logo.png')} />;
|
|
};
|
|
```
|
|
|
|
The function returns an encoded URL that works correctly when deploying to subdirectories.
|
|
|
|
## Using with components
|
|
|
|
**Images:**
|
|
|
|
```tsx
|
|
import {Img, staticFile} from 'remotion';
|
|
|
|
<Img src={staticFile('photo.png')} />;
|
|
```
|
|
|
|
**Videos:**
|
|
|
|
```tsx
|
|
import {Video} from '@remotion/media';
|
|
import {staticFile} from 'remotion';
|
|
|
|
<Video src={staticFile('clip.mp4')} />;
|
|
```
|
|
|
|
**Audio:**
|
|
|
|
```tsx
|
|
import {Audio} from '@remotion/media';
|
|
import {staticFile} from 'remotion';
|
|
|
|
<Audio src={staticFile('music.mp3')} />;
|
|
```
|
|
|
|
**Fonts:**
|
|
|
|
```tsx
|
|
import {staticFile} from 'remotion';
|
|
|
|
const fontFamily = new FontFace('MyFont', `url(${staticFile('font.woff2')})`);
|
|
await fontFamily.load();
|
|
document.fonts.add(fontFamily);
|
|
```
|
|
|
|
## Remote URLs
|
|
|
|
Remote URLs can be used directly without `staticFile()`:
|
|
|
|
```tsx
|
|
<Img src="https://example.com/image.png" />
|
|
<Video src="https://remotion.media/video.mp4" />
|
|
```
|
|
|
|
## Important notes
|
|
|
|
- Remotion components (`<Img>`, `<Video>`, `<Audio>`) ensure assets are fully loaded before rendering
|
|
- Special characters in filenames (`#`, `?`, `&`) are automatically encoded
|