hyperframes 0.5.0-alpha.11 → 0.5.0-alpha.13
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/cli.js +172 -17
- package/dist/docs/rendering.md +4 -1
- package/dist/hyperframe-runtime.js +18 -18
- package/dist/hyperframe.manifest.json +1 -1
- package/dist/hyperframe.runtime.iife.js +18 -18
- package/dist/skills/gsap/SKILL.md +30 -1
- package/dist/studio/assets/{index-Bl4Deziq.js → index-JhhmFie-.js} +31 -31
- package/dist/studio/index.html +1 -1
- package/dist/templates/_shared/CLAUDE.md +5 -0
- package/package.json +1 -1
package/dist/docs/rendering.md
CHANGED
|
@@ -19,11 +19,14 @@ Requires: Docker installed and running.
|
|
|
19
19
|
- `-w, --workers` — Parallel workers 1-8 (default: auto)
|
|
20
20
|
- `--crf` — Override encoder CRF (mutually exclusive with `--video-bitrate`)
|
|
21
21
|
- `--video-bitrate` — Target video bitrate such as `10M` (mutually exclusive with `--crf`)
|
|
22
|
-
- `--gpu` — Use GPU encoding (NVENC, VideoToolbox, VAAPI)
|
|
22
|
+
- `--gpu` — Use GPU encoding (NVENC, VideoToolbox, VAAPI, QSV)
|
|
23
|
+
- `--browser-gpu` / `--no-browser-gpu` — Use or opt out of host GPU acceleration for local Chrome/WebGL capture (enabled by default for local renders, disabled in Docker)
|
|
23
24
|
- `-o, --output` — Custom output path
|
|
24
25
|
|
|
25
26
|
## Tips
|
|
26
27
|
|
|
27
28
|
- Use `draft` quality for fast previews during development
|
|
29
|
+
- Local renders use browser GPU capture automatically; use `--no-browser-gpu` to compare against the software-browser path
|
|
30
|
+
- Use `--gpu` when a local render also benefits from hardware FFmpeg encoding
|
|
28
31
|
- Use `npx hyperframes benchmark` to find optimal settings
|
|
29
32
|
- 4 workers is usually the sweet spot for most compositions
|