video-speed-adjustment
Adjust video speed using each::sense AI. Create slow motion, time-lapse, hyperlapse, speed ramps, reverse effects, and cinematic slow-mo with frame interpolation for smooth playback.
What this skill does
# 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
```bash
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
| Effect | Speed Factor | Use Case |
|--------|--------------|----------|
| Extreme Slow-Mo | 0.25x | Sports highlights, action details |
| Slow Motion | 0.5x | Dramatic moments, product reveals |
| Slight Slow | 0.75x | Subtle emphasis |
| Normal | 1x | Original speed |
| Slight Fast | 1.5x | Skip boring parts |
| Fast Forward | 2x | Quick overview |
| Very Fast | 4x | Process summaries |
| Time-Lapse | 10x-20x | Construction, 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.
```bash
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.
```bash
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.
```bash
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.
```bash
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.
```bash
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.
```bash
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.
```bash
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.
```bash
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.
```bash
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. CRelated in Image & Video
watch
IncludedWatch a video (URL or local path). Downloads with yt-dlp, extracts auto-scaled frames with ffmpeg, pulls the transcript from captions (or Whisper API fallback), and hands the result to Claude so it can answer questions about what's in the video.
physical-ai-defect-image-generation
IncludedUse when the user wants to orchestrate defect image generation, run associated setup, or handle outputs on OSMO. The Day 0 path handles cold-start with USD-to-ROI, image-edit augmentation, and AnomalyGen to create initial PCBA datasets. The Day 1 path performs inference and labeling on real images. This skill helps with first-time asset setup, creation of finetuning checkpoints, and configuring deployment. Trigger keywords: defect image generation, dig workflow, dig pipeline, defect image detection workflow, aoi pipeline, aoi anomalygen, usd2roi anomalygen, day 0 pcba, day 1 pcba, day 1 real-photo alignment, day 1 manual roi, metal surface anomaly, glass defect, anomalygen finetune, setup_pcb, setup_metal, setup_glass, setup_pretrained, dig setup, dig datasets, dig pretrained checkpoint, dig image-edit endpoint.
accelint-react-best-practices
IncludedReact performance optimization and best practices. ALWAYS use this skill when working with any React code - writing components, hooks, JSX; refactoring; optimizing re-renders, memoization, state management; reviewing for performance; fixing hydration mismatches; debugging infinite re-renders, stale closures, input focus loss, animations restarting; preventing remounting; implementing transitions, lazy initialization, effect dependencies. Even simple React tasks benefit from these patterns. Covers React 19+ (useEffectEvent, Activity, ref props). Triggers - useEffect, useState, useMemo, useCallback, memo, inline components, nested components, components inside components, re-render, performance, hydration, SSR, Next.js, useDeferredValue, combined hooks.
elevenlabs-agents
IncludedBuild conversational AI voice agents with ElevenLabs Platform using React, JavaScript, React Native, or Swift SDKs. Configure agents, tools (client/server/MCP), RAG knowledge bases, multi-voice, and Scribe real-time STT. Use when: building voice chat interfaces, implementing AI phone agents with Twilio, configuring agent workflows or tools, adding RAG knowledge bases, testing with CLI "agents as code", or troubleshooting deprecated @11labs packages, Android audio cutoff, CSP violations, dynamic variables, or WebRTC config. Keywords: ElevenLabs Agents, ElevenLabs voice agents, AI voice agents, conversational AI, @elevenlabs/react, @elevenlabs/client, @elevenlabs/react-native, @elevenlabs/elevenlabs-js, @elevenlabs/agents-cli, elevenlabs SDK, voice AI, TTS, text-to-speech, ASR, speech recognition, turn-taking model, WebRTC voice, WebSocket voice, ElevenLabs conversation, agent system prompt, agent tools, agent knowledge base, RAG voice agents, multi-voice agents, pronunciation dictionary, voice speed control, elevenlabs scribe, @11labs deprecated, Android audio cutoff, CSP violation elevenlabs, dynamic variables elevenlabs, case-sensitive tool names, webhook authentication
humanizer
IncludedHumanize AI-generated text by detecting and removing patterns typical of LLM output. Rewrites text to sound natural, specific, and human. Uses 28 pattern detectors, 560+ AI vocabulary terms across 3 tiers, and statistical analysis (burstiness, type-token ratio, readability) for comprehensive detection. Use when asked to humanize text, de-AI writing, make content sound more natural/human, review writing for AI patterns, score text for AI detection, or improve AI-generated drafts. Covers content, language, style, communication, and filler categories.
generating-mermaid-diagrams
IncludedSalesforce architecture diagrams using Mermaid with ASCII fallback. Use this skill when generating text-based diagrams for Salesforce architecture, OAuth flows, ERDs, integration sequences, or Agentforce structure. TRIGGER when: user says "diagram", "visualize", "ERD", or asks for sequence diagrams, flowcharts, class diagrams, or architecture visualizations in Mermaid. DO NOT TRIGGER when: user wants PNG/SVG image output (use generating-visual-diagrams), or asks about non-Salesforce systems.