mirror of
https://github.com/affaan-m/everything-claude-code.git
synced 2026-04-13 21:33:32 +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
53 lines
1.2 KiB
Markdown
53 lines
1.2 KiB
Markdown
---
|
|
name: trimming
|
|
description: Trimming patterns for Remotion - cut the beginning or end of animations
|
|
metadata:
|
|
tags: sequence, trim, clip, cut, offset
|
|
---
|
|
|
|
Use `<Sequence>` with a negative `from` value to trim the start of an animation.
|
|
|
|
## Trim the Beginning
|
|
|
|
A negative `from` value shifts time backwards, making the animation start partway through:
|
|
|
|
```tsx
|
|
import { Sequence, useVideoConfig } from "remotion";
|
|
|
|
const fps = useVideoConfig();
|
|
|
|
<Sequence from={-0.5 * fps}>
|
|
<MyAnimation />
|
|
</Sequence>
|
|
```
|
|
|
|
The animation appears 15 frames into its progress - the first 15 frames are trimmed off.
|
|
Inside `<MyAnimation>`, `useCurrentFrame()` starts at 15 instead of 0.
|
|
|
|
## Trim the End
|
|
|
|
Use `durationInFrames` to unmount content after a specified duration:
|
|
|
|
```tsx
|
|
|
|
<Sequence durationInFrames={1.5 * fps}>
|
|
<MyAnimation />
|
|
</Sequence>
|
|
```
|
|
|
|
The animation plays for 45 frames, then the component unmounts.
|
|
|
|
## Trim and Delay
|
|
|
|
Nest sequences to both trim the beginning and delay when it appears:
|
|
|
|
```tsx
|
|
<Sequence from={30}>
|
|
<Sequence from={-15}>
|
|
<MyAnimation />
|
|
</Sequence>
|
|
</Sequence>
|
|
```
|
|
|
|
The inner sequence trims 15 frames from the start, and the outer sequence delays the result by 30 frames.
|