Token导航 LogoToken导航TokenDH.com
待分类需要联网github未标认证来源可访问许可证需确认审计提醒

video-speed-adjustment视频速度调整

Agent Skill

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

总安装

1,836

周安装

75

GitHub Stars

12

下载量

588
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/eachlabs/skills --skill video-speed-adjustment

简介

用于辅助视频生成、动画合成、脚本化剪辑或 Remotion 等视频项目开发。

  • 适合让 Agent 组织镜头、生成素材说明、维护合成代码或排查渲染问题。
  • 使用时需要确认分辨率、时长、素材路径和导出格式。
  • 涉及外部素材、人物肖像或商业发布时,应先核对版权授权和内容审核要求。
  • 安装方式:github,命令:npx skills add https://github.com/eachlabs/skills --skill video-speed-adjustment

SKILL.md

Video Speed Adjustment

Adjust video playback speed using each::sense. This skill enables speed manipulation for creative effects including slow motion, time-lapse, hyperlapse, speed ramping, reverse playback, and frame interpolation for ultra-smooth slow-mo.

Features

  • Slow Motion: Reduce playback speed (0.25x to 0.75x) for dramatic effect
  • Speed Up: Accelerate video (1.5x to 4x) for quick recaps
  • Time-Lapse: Extreme speed increase (8x to 20x) for long processes
  • Hyperlapse: Stabilized time-lapse with motion smoothing
  • Frame Interpolation: AI-generated frames for smooth slow motion
  • Speed Ramp: Variable speed within a single clip
  • Reverse Playback: Play video backwards
  • High FPS Output: 60fps or 120fps output for smooth playback

Quick Start

curl -X POST https://eachsense-agent.core.eachlabs.run/v1/chat/completions \
  -H "Content-Type: application/json" \
  -H "X-API-Key: $EACHLABS_API_KEY" \
  -H "Accept: text/event-stream" \
  -d '{
    "messages": [{"role": "user", "content": "Speed up this video to 2x playback speed"}],
    "model": "eachsense/beta",
    "stream": true,
    "mode": "max",
    "video_url": "https://example.com/my-video.mp4"
  }'

Speed Adjustment Reference

EffectSpeed FactorUse Case
Extreme Slow-Mo0.25xSports highlights, action details
Slow Motion0.5xDramatic moments, product reveals
Slight Slow0.75xSubtle emphasis
Normal1xOriginal speed
Slight Fast1.5xSkip boring parts
Fast Forward2xQuick overview
Very Fast4xProcess summaries
Time-Lapse10x-20xConstruction, cooking, travel

Use Case Examples

1. Speed Up Video 2x

Double the playback speed for a quick recap or to fit content into a shorter duration.

curl -X POST https://eachsense-agent.core.eachlabs.run/v1/chat/completions \
  -H "Content-Type: application/json" \
  -H "X-API-Key: $EACHLABS_API_KEY" \
  -H "Accept: text/event-stream" \
  -d '{
    "messages": [{"role": "user", "content": "Speed up this video to 2x playback speed. Keep the audio pitch corrected."}],
    "model": "eachsense/beta",
    "stream": true,
    "mode": "max",
    "video_url": "https://example.com/tutorial-video.mp4"
  }'

2. Slow Motion 0.5x

Create a half-speed slow motion effect for emphasis and drama.

curl -X POST https://eachsense-agent.core.eachlabs.run/v1/chat/completions \
  -H "Content-Type: application/json" \
  -H "X-API-Key: $EACHLABS_API_KEY" \
  -H "Accept: text/event-stream" \
  -d '{
    "messages": [{"role": "user", "content": "Create a 0.5x slow motion version of this video. Apply frame interpolation for smooth playback without stuttering."}],
    "model": "eachsense/beta",
    "stream": true,
    "mode": "max",
    "video_url": "https://example.com/action-clip.mp4"
  }'

3. Time-Lapse Effect (10x Speed)

Transform regular footage into a time-lapse for showing long processes quickly.

curl -X POST https://eachsense-agent.core.eachlabs.run/v1/chat/completions \
  -H "Content-Type: application/json" \
  -H "X-API-Key: $EACHLABS_API_KEY" \
  -H "Accept: text/event-stream" \
  -d '{
    "messages": [{"role": "user", "content": "Create a 10x time-lapse effect from this video. This is footage of a sunset, compress the 30 minute recording into a 3 minute clip. Maintain smooth motion and remove audio."}],
    "model": "eachsense/beta",
    "stream": true,
    "mode": "max",
    "video_url": "https://example.com/sunset-footage.mp4"
  }'

4. Smooth Slow Motion with Frame Interpolation

Use AI frame interpolation to create buttery-smooth slow motion from standard 30fps footage.

curl -X POST https://eachsense-agent.core.eachlabs.run/v1/chat/completions \
  -H "Content-Type: application/json" \
  -H "X-API-Key: $EACHLABS_API_KEY" \
  -H "Accept: text/event-stream" \
  -d '{
    "messages": [{"role": "user", "content": "Create a smooth 0.25x slow motion video using AI frame interpolation. The source is 30fps footage - interpolate to 120fps first, then slow down to 0.25x for silky smooth playback. This is a skateboard trick that needs to look cinematic."}],
    "model": "eachsense/beta",
    "stream": true,
    "mode": "max",
    "video_url": "https://example.com/skateboard-trick.mp4"
  }'

5. Speed Ramp (Variable Speed)

Create dynamic speed changes within a single clip - start slow, speed up, then slow down again.

curl -X POST https://eachsense-agent.core.eachlabs.run/v1/chat/completions \
  -H "Content-Type: application/json" \
  -H "X-API-Key: $EACHLABS_API_KEY" \
  -H "Accept: text/event-stream" \
  -d '{
    "messages": [{"role": "user", "content": "Apply a speed ramp effect to this video: Start at 0.5x slow motion for the first 2 seconds (the jump), then ramp up to 2x speed for the middle section (the landing and walk), then back to 0.5x for the final trick. Create smooth transitions between speed changes."}],
    "model": "eachsense/beta",
    "stream": true,
    "mode": "max",
    "video_url": "https://example.com/parkour-clip.mp4"
  }'

6. Reverse Video

Play the video backwards for creative effects or reveals.

curl -X POST https://eachsense-agent.core.eachlabs.run/v1/chat/completions \
  -H "Content-Type: application/json" \
  -H "X-API-Key: $EACHLABS_API_KEY" \
  -H "Accept: text/event-stream" \
  -d '{
    "messages": [{"role": "user", "content": "Reverse this video so it plays backwards. This is a glass breaking - I want to show it reassembling. Keep the audio reversed as well for the effect."}],
    "model": "eachsense/beta",
    "stream": true,
    "mode": "max",
    "video_url": "https://example.com/glass-breaking.mp4"
  }'

7. Hyperlapse Effect

Create a stabilized, smooth hyperlapse from handheld footage with speed increase.

curl -X POST https://eachsense-agent.core.eachlabs.run/v1/chat/completions \
  -H "Content-Type: application/json" \
  -H "X-API-Key: $EACHLABS_API_KEY" \
  -H "Accept: text/event-stream" \
  -d '{
    "messages": [{"role": "user", "content": "Create a hyperlapse effect from this walking footage. Speed up to 8x while applying stabilization and motion smoothing. This is a walk through a city street - make it look like a professional hyperlapse with smooth camera movement."}],
    "model": "eachsense/beta",
    "stream": true,
    "mode": "max",
    "video_url": "https://example.com/city-walk.mp4"
  }'

8. Slow Motion Sports Highlight

Create dramatic slow motion from sports footage with emphasis on key moments.

curl -X POST https://eachsense-agent.core.eachlabs.run/v1/chat/completions \
  -H "Content-Type: application/json" \
  -H "X-API-Key: $EACHLABS_API_KEY" \
  -H "Accept: text/event-stream" \
  -d '{
    "messages": [{"role": "user", "content": "Create a slow motion sports highlight from this basketball footage. Apply 0.3x slow motion with frame interpolation for smooth playback. Focus on making the dunk look dramatic and cinematic. Output at 60fps for smooth viewing."}],
    "model": "eachsense/beta",
    "stream": true,
    "mode": "max",
    "video_url": "https://example.com/basketball-dunk.mp4"
  }'

9. Fast Forward Boring Parts

Speed up specific sections while keeping others at normal speed.

curl -X POST https://eachsense-agent.core.eachlabs.run/v1/chat/completions \
  -H "Content-Type: application/json" \
  -H "X-API-Key: $EACHLABS_API_KEY" \
  -H "Accept: text/event-stream" \
  -d '{
    "messages": [{"role": "user", "content": "This is a cooking tutorial video. Speed up the waiting/cooking parts to 4x (like when the food is just sitting in the oven or boiling) but keep the active cooking instruction parts at normal 1x speed. Make the speed transitions smooth."}],
    "model": "eachsense/beta",
    "stream": true,
    "mode": "max",
    "video_url": "https://example.com/cooking-tutorial.mp4"
  }'

10. Cinematic Slow-Mo with 60fps Output

Create film-quality slow motion with high frame rate output for professional results.

curl -X POST https://eachsense-agent.core.eachlabs.run/v1/chat/completions \
  -H "Content-Type: application/json" \
  -H "X-API-Key: $EACHLABS_API_KEY" \
  -H "Accept: text/event-stream" \
  -d '{
    "messages": [{"role": "user", "content": "Create a cinematic slow motion video at 0.4x speed. Use AI frame interpolation to generate smooth intermediate frames and output at 60fps. This is a fashion model walking on a runway - add slight motion blur for a filmic look. The result should look like it was shot with a high-speed camera."}],
    "model": "eachsense/beta",
    "stream": true,
    "mode": "max",
    "video_url": "https://example.com/runway-walk.mp4"
  }'

Multi-Turn Speed Adjustment Workflow

Use session_id to iterate on speed adjustments:

# Initial speed adjustment
curl -X POST https://eachsense-agent.core.eachlabs.run/v1/chat/completions \
  -H "Content-Type: application/json" \
  -H "X-API-Key: $EACHLABS_API_KEY" \
  -H "Accept: text/event-stream" \
  -d '{
    "messages": [{"role": "user", "content": "Create a slow motion version of this video at 0.5x speed"}],
    "model": "eachsense/beta",
    "stream": true,
    "session_id": "speed-project-001",
    "video_url": "https://example.com/action-scene.mp4"
  }'

# Request further adjustment
curl -X POST https://eachsense-agent.core.eachlabs.run/v1/chat/completions \
  -H "Content-Type: application/json" \
  -H "X-API-Key: $EACHLABS_API_KEY" \
  -H "Accept: text/event-stream" \
  -d '{
    "messages": [{"role": "user", "content": "The slow motion looks good but I want it even slower - make it 0.25x with frame interpolation for smoothness"}],
    "model": "eachsense/beta",
    "stream": true,
    "session_id": "speed-project-001"
  }'

# Add additional effect
curl -X POST https://eachsense-agent.core.eachlabs.run/v1/chat/completions \
  -H "Content-Type: application/json" \
  -H "X-API-Key: $EACHLABS_API_KEY" \
  -H "Accept: text/event-stream" \
  -d '{
    "messages": [{"role": "user", "content": "Now add a speed ramp at the end - gradually speed up from 0.25x to 2x over the last 3 seconds"}],
    "model": "eachsense/beta",
    "stream": true,
    "session_id": "speed-project-001"
  }'

Best Practices

Slow Motion

  • Source Frame Rate: Higher source FPS (60fps, 120fps) produces better slow motion
  • Frame Interpolation: Use AI interpolation for smooth results from 30fps sources
  • Output FPS: Request 60fps output for smooth playback on modern displays
  • Avoid Extreme Slow-Mo: Going below 0.25x may produce artifacts

Speed Up / Time-Lapse

  • Audio Handling: Remove audio for extreme speed-ups (4x+) or use pitch correction
  • Motion Blur: Add slight motion blur for smoother fast-forward appearance
  • Stabilization: Apply stabilization for handheld footage before speed-up

Speed Ramps

  • Smooth Transitions: Request gradual speed changes over 0.5-2 seconds
  • Mark Key Moments: Describe which parts should be slow vs fast
  • Audio Sync: Consider how speed changes affect audio/music sync

Quality Tips

  • Mode Selection: Use max for final exports, eco for previews
  • Resolution: Higher resolution sources produce better results
  • Compression: Request high bitrate output for quality retention

Mode Selection

ModeBest ForSpeedQuality
maxFinal exports, client deliverables, portfolio workSlowerHighest
ecoQuick previews, testing speed values, draftsFasterGood

Prompt Tips for Speed Adjustment

When requesting speed adjustments, include these details:

  1. Speed Factor: Specify exact multiplier (0.5x, 2x, 10x)
  2. Frame Interpolation: Request if needed for smooth slow motion
  3. Output FPS: Specify desired frame rate (30fps, 60fps, 120fps)
  4. Audio Handling: Keep, remove, pitch correct, or reverse
  5. Transitions: For speed ramps, describe how transitions should feel
  6. Quality Priority: Mention if smoothness or detail is more important

Example Prompt Structure

"[Speed effect] this video to [speed factor].
[Frame interpolation requirement].
Output at [fps] for [use case].
[Audio handling instruction].
[Additional quality requirements]."

Error Handling

ErrorCauseSolution
Failed to create prediction: HTTP 422Insufficient balanceTop up at eachlabs.ai
TimeoutLong video processingSet client timeout to minimum 10 minutes
Choppy slow motionNo frame interpolationRequest AI frame interpolation
Audio pitch issuesSpeed change without correctionRequest pitch correction or remove audio

Technical Notes

  • Client Timeout: Set HTTP client timeout to minimum 10 minutes for video processing
  • Video Length: Longer videos take proportionally more time to process
  • Frame Interpolation: Adds processing time but dramatically improves slow motion quality
  • Maximum Speed: Practical range is 0.1x to 20x depending on source footage

Related Skills

  • each-sense - Core API documentation
  • video-stabilization - Stabilize shaky footage
  • video-editing - General video editing capabilities
  • video-generation - Generate new video content

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

34.27%
按下载量换算202

Claude

29.72%
按下载量换算175

Cursor

20.12%
按下载量换算118

Gemini CLI

10.57%
按下载量换算62

安全审计

Gen Agent Trust Hub

通过

Socket

可疑

Snyk

可疑

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

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

来源信息

继续浏览同类 Skills