Token导航 LogoToken导航TokenDH.com
前端设计敏感数据github未标认证来源可访问许可证需确认审计提醒

blitzreels-video-editing闪电战视频编辑

Agent Skill

用于辅助视频生成、动画合成、脚本化剪辑或 Remotion 等视频项目开发。它适合让 Agent 组织镜头、生成素材说明、维护合成代码或排查渲染问题。使用时需要确认分辨率、时长、素材路径和导出格式;涉及外部素材、人物肖像或商业发布时,应先核对版权授权和内容审核要求。

总安装

6,821

周安装

293

GitHub Stars

公开资料未说明

下载量

2,391
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:blitzreels-video-editing(闪电战视频编辑)
来源仓库:https://github.com/blitzreels/agent-skills
仓库路径:skills/blitzreels-video-editing
安装命令:
npx skills add https://github.com/blitzreels/agent-skills --skill blitzreels-video-editing
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/blitzreels/agent-skills --skill blitzreels-video-editing

简介

blitzreels-video-editing 用于辅助视频生成和动画合成项目开发,适合组织镜头和生成素材说明。

  • 支持 Remotion 等项目,提供时间线管理和渲染排查功能。
  • 通过 github 安装并使用 npx skills add 命令部署。
  • 需确认分辨率、时长、素材路径和导出格式;涉及外部素材时应核对版权授权。
  • 建议结合原始 README 和来源仓库进一步验证具体用法和功能边界。

SKILL.md

BlitzReels Video Editing

Edit videos via the BlitzReels API: upload media, transcribe, edit timeline, apply captions, add overlays and backgrounds, then export.

If the task is specifically long-form to shorts, podcast-to-shorts, suggestion-backed clipping, or public automatic-layout reframe planning, prefer the blitzreels-clipping skill first and come back here for lower-level timeline work.

Important: project preview and visual QA endpoints now exist. Use them when an agent needs to verify framing, caption placement, or layout visually before export.

Quick Start

# Upload a video from URL
bash scripts/editor.sh upload-url PROJECT_ID "https://example.com/video.mp4"

# Add to timeline and transcribe
bash scripts/editor.sh add-media PROJECT_ID MEDIA_ID
bash scripts/editor.sh transcribe PROJECT_ID MEDIA_ID

# Trim, caption, export
bash scripts/editor.sh trim PROJECT_ID ITEM_ID 1.0 -2.0
bash scripts/editor.sh captions PROJECT_ID viral-center
bash scripts/editor.sh export PROJECT_ID --resolution 1080p

Primary Workflow

  1. Create projectPOST /projects {"name":"...", "aspect_ratio":"9:16"}
  2. Upload mediaeditor.sh upload-url (URL import) or 2-step presigned upload
  3. Add to timelineeditor.sh add-media places media on the timeline
  4. Transcribeeditor.sh transcribe generates word-level captions
  5. Get contexteditor.sh context to see timeline state
  6. Edit timeline — trim, split, delete, reorder, auto-remove silences
  7. Apply captionseditor.sh captions <presetId> for styled subtitles
  8. Add overlays — text overlays, motion code, motion graphics
  9. Add background — fill layers (gradients, cinematic, patterns)
  10. Exporteditor.sh export renders final video with download URL

Scripts

scripts/editor.sh

Subcommand wrapper for common editing operations.

CommandUsageDescription
upload-url<projectId> <url> [name]Upload media from URL
transcribe<projectId> <mediaId>Transcribe + poll until done
context<projectId> [mode]Get project context (default: timeline)
timeline-at<projectId> <seconds>Get items at timestamp
trim<projectId> <itemId> <startDelta> <endDelta>Trim item edges
split<projectId> <itemId> <atSeconds>Split item at time
delete-item<projectId> <itemId>Delete timeline item
add-media<projectId> <mediaId> [startSec]Add media to timeline
add-broll<projectId> <JSON>Add B-roll clip
captions<projectId> <presetId>Apply caption preset
export<projectId> [--resolution R]Export + poll + download URL

Run bash scripts/editor.sh --help for full usage.

scripts/blitzreels.sh

Generic API helper for direct endpoint calls. Use for overlays, effects, and advanced operations where editor.sh doesn't have a shortcut.

bash scripts/blitzreels.sh METHOD /path [JSON_BODY]

Environment Variables

VariableRequiredDescription
BLITZREELS_API_KEYYesAPI key (br_live_...)
BLITZREELS_API_BASE_URLNoOverride base URL (default: https://www.blitzreels.com/api/v1)
BLITZREELS_ALLOW_EXPENSIVENoSet to 1 for export calls via blitzreels.sh

API Endpoint Index

Projects

MethodPathDescription
POST/projectsCreate project
GET/projects/{id}Get project details
PATCH/projects/{id}Update project settings
DELETE/projects/{id}Delete project
GET/projectsList projects

Media

MethodPathDescription
POST/projects/{id}/mediaImport media from URL
POST/projects/{id}/upload/presignedGet presigned upload URL
POST/projects/{id}/upload/finalizeFinalize presigned upload

Transcription

MethodPathDescription
POST/projects/{id}/transcribeStart transcription job
GET/jobs/{jobId}Poll job status
GET/projects/{id}/context?mode=transcriptGet transcript
POST/projects/{id}/captions/regenerateRe-transcribe media

Captions

MethodPathDescription
POST/projects/{id}/captionsApply caption preset
GET/projects/{id}/captions/styleGet current style
PATCH/projects/{id}/captions/styleUpdate style settings
GET/projects/{id}/captions/presetsList presets by category
PATCH/projects/{id}/captions/{captionId}Update caption words/timing
DELETE/projects/{id}/captions/{captionId}Delete caption
POST/projects/{id}/captions/words/emphasisEmphasize specific words

Timeline Editing

MethodPathDescription
POST/projects/{id}/timeline/mediaAdd media to timeline
POST/projects/{id}/timeline/trimTrim item by deltas
POST/projects/{id}/timeline/splitSplit item at timestamp
DELETE/projects/{id}/timeline/items/{itemId}Delete item
PATCH/projects/{id}/timeline/items/{itemId}Update item
POST/projects/{id}/timeline/items/batch-updateBatch update items
PATCH/projects/{id}/timeline/items/{itemId}/volumeSet volume
PATCH/projects/{id}/timeline/items/{itemId}/transformSet transform
POST/projects/{id}/timeline/pack-clipsRemove gaps
POST/projects/{id}/timeline/silence-detectionDetect silences
POST/projects/{id}/timeline/mistake-detectionAI mistake detection
POST/projects/{id}/timeline/caption-recutCaption-based recut plan

Overlays — Text, Motion Code, Motion Graphics

MethodPathDescription
POST/projects/{id}/text-overlaysAdd text overlay
PATCH/projects/{id}/text-overlays/{oid}Update text overlay
DELETE/projects/{id}/text-overlays/{oid}Remove text overlay
POST/projects/{id}/motion-codeAdd animated code block
PATCH/projects/{id}/motion-code/{cid}Update code block
POST/projects/{id}/motion-graphicsAdd motion graphic
PATCH/projects/{id}/motion-graphics/{gid}Update motion graphic

Backgrounds

MethodPathDescription
POST/projects/{id}/fill-layersAdd fill layer
PATCH/projects/{id}/fill-layers/{lid}Update fill layer

Context & State

MethodPathDescription
GET/projects/{id}/context?mode=...Get project context
GET/projects/{id}/timeline/at?time_seconds=XItems at timestamp
POST/projects/{id}/preview-frameRender one still preview
POST/projects/{id}/preview-framesRender multiple still previews
POST/projects/{id}/visual-analysisRun structured frame QA
GET/projects/{id}/visual-debugGet machine-readable layout geometry
POST/projects/{id}/timeline/undoUndo last action

Media View Repair

MethodPathDescription
POST/projects/{id}/timeline/media-views/{timelineItemId}Upsert source-view crop/canvas state for one item
POST/projects/{id}/timeline/media-views/duplicateDuplicate a linked source view to another item

Clipping / Reframe Preview

MethodPathDescription
POST/workspace/media/assets/{assetId}/reframe-plan/previewGenerate a reframe plan plus preview stills before apply

Export & Jobs

MethodPathDescription
POST/projects/{id}/exportStart export (expensive)
GET/exports/{exportId}Export status + download URL
GET/projects/{id}/exportsExport history
DELETE/projects/{id}/exportsDelete all exports
GET/jobs/{jobId}Generic job polling

Effects & Keyframes

MethodPathDescription
POST/projects/{id}/timeline/effects/zoomAdd zoom effect
POST/projects/{id}/timeline/effects/maskAdd mask effect
POST/projects/{id}/timeline/effects/color-gradeAdd color grade
POST/projects/{id}/timeline/items/{itemId}/keyframesCreate keyframe

Context Modes

Use ?mode= to control what data the context endpoint returns:

ModeReturns
summaryProject metadata, duration, media count
assetsAll media assets with metadata
timelineFull timeline with items, layers, timing
transcriptWord-level transcript from transcription
fullEverything combined

Default: timeline

bash scripts/editor.sh context PROJECT_ID timeline
bash scripts/editor.sh context PROJECT_ID full

Upload Modes

URL Import (Simpler)

bash scripts/editor.sh upload-url PROJECT_ID "https://example.com/video.mp4"

Presigned 2-Step (For Local Files)

# Step 1: Get presigned URL
PRESIGNED=$(bash scripts/blitzreels.sh POST /projects/PROJECT_ID/upload/presigned \
  '{"fileName":"video.mp4","contentType":"video/mp4"}')

# Step 2: Upload to presigned URL
curl -X PUT "$(echo $PRESIGNED | jq -r '.url')" \
  -H "Content-Type: video/mp4" \
  --data-binary @video.mp4

# Step 3: Finalize
bash scripts/blitzreels.sh POST /projects/PROJECT_ID/upload/finalize \
  "{\"storageKey\":\"$(echo $PRESIGNED | jq -r '.key')\"}"

Quick Reference

  • Caption presets: 30+ presets across 6 categories — see references/caption-styles.md
  • Active word animations: highlight, scale, glow, lift, bounce, punch, slam, elastic, shake, none
  • Motion code themes: github-dark, one-dark, dracula, nord, monokai, tokyo-night
  • Fill layer presets: 38+ across 7 categories — see references/fill-layers.md
  • Timeline layer order: caption(0) → effect(1) → image(2) → video(3) → audio(4) → background(5)

References

  • references/clipping.md — Long-form to short workflow, podcast QA loop, preview/repair endpoints
  • references/caption-styles.md — All 30+ presets, CaptionStyleSettings schema, animations
  • references/overlays.md — Text overlays, motion code, motion graphics schemas
  • references/fill-layers.md — 38+ background presets, FillLayerSettings schema
  • references/timeline-ops.md — Timeline endpoints, AI features, keyframes, effects
  • references/export-settings.md — Export params, codecs, polling pattern
  • examples/edit-uploaded-video.md — Full upload→edit→export walkthrough
  • examples/enhance-with-overlays.md — Adding graphics to existing project

Safety & Notes

  • Use https://www.blitzreels.com/api/v1 as base URL (avoid redirect from non-www)
  • Export and B-roll generation are expensive — require BLITZREELS_ALLOW_EXPENSIVE=1
  • editor.sh export sets this automatically; blitzreels.sh requires explicit opt-in
  • Download URLs are temporary (24h TTL)
  • Full OpenAPI spec: https://www.blitzreels.com/api/openapi.json

Rate Limits

PlanRequests/minRequests/day
Free10100
Lite301,000
Creator605,000
Agency12020,000

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

32.97%
按下载量换算788

Claude

30.67%
按下载量换算733

Cursor

18.38%
按下载量换算439

Gemini CLI

9.42%
按下载量换算225

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

可疑

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills