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

bytedance-seedance-2-0字节跳动种子 2 0

Agent Skill

bytedance-seedance-2-0 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要围绕仓库状态、代码变更或协作事项进行整理时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

312

周安装

13

GitHub Stars

12

下载量

104
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

请帮我安装这个 Agent Skill:bytedance-seedance-2-0(字节跳动种子 2 0)
来源仓库:https://github.com/eachlabs/skills
仓库路径:skills/bytedance-seedance-2-0
安装命令:
npx skills add https://github.com/eachlabs/skills --skill bytedance-seedance-2-0
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/eachlabs/skills --skill bytedance-seedance-2-0

简介

用于通过字节跳动 Seedance 2.0 模型生成高质量视频,支持文本和图片输入。

  • 适用于 Codex、Claude、Cursor、Gemini CLI,提供快速视频生成服务。
  • 支持同步音频、物理效果和导演级镜头控制,适合高吞吐流水线。
  • 安装方式:github,命令为 npx skills add https://github.com/eachlabs/skills --skill bytedance-seedance-2-0。
  • 建议确认权限范围和维护状态,避免触发不必要的联网或命令执行。

SKILL.md

ByteDance Seedance 2.0 (Fast)

ByteDance Seedance 2.0 on the EachLabs Predictions API. Seedance 2.0 generates cinematic video with native synchronized audio (sound effects, ambient sound, lip-synced speech), realistic physics, and director-level camera control.

Two model slugs:

SlugCategoryUse
bytedance-seedance-2-0-text-to-video-fastText to VideoGenerate a video from a prompt
bytedance-seedance-2-0-image-to-video-fastImage to VideoAnimate a starting frame (optionally to an end frame)

The "Fast" tier prioritizes rapid turnaround for high-throughput pipelines while keeping the family's character consistency and physics.

When to use

  • User asks for "Seedance 2.0", "ByteDance video", or wants a Seedance-style look.
  • Native audio required in the same pass (dialogue, SFX, ambience) — no separate TTS/lipsync step.
  • Cinematic motion, realistic physics, or director-level camera language ("slow push in", "rack focus").
  • Durations of 4–15 seconds at 480p or 720p.
  • Image-to-video with an end frame to control where the clip lands.

For a wider video-model comparison (Veo, Kling, Sora, Pixverse, Hailuo, etc.) see eachlabs-video-generation.

Authentication

Header: X-API-Key: <your-api-key>

Set the EACHLABS_API_KEY environment variable. Get your key at eachlabs.ai/dashboard/api-keys.

Prediction Flow

  1. (Recommended) Check schemaGET https://api.eachlabs.ai/v1/model?slug=bytedance-seedance-2-0-text-to-video-fast (or the i2v slug).
  2. POST https://api.eachlabs.ai/v1/prediction with model, version: "0.0.1", and input.
  3. Poll GET https://api.eachlabs.ai/v1/prediction/{id} until status is "success" or "error", or use a webhook.
  4. Extract the video URL from output (string).

Quick Start — Text to Video

curl -X POST https://api.eachlabs.ai/v1/prediction \
  -H "Content-Type: application/json" \
  -H "X-API-Key: $EACHLABS_API_KEY" \
  -d '{
    "model": "bytedance-seedance-2-0-text-to-video-fast",
    "version": "0.0.1",
    "input": {
      "prompt": "Cinematic slow push-in on a lone astronaut standing at the edge of a Martian canyon at dusk, dust drifting across their boots, distant wind, subtle helmet reflections",
      "resolution": "720p",
      "duration": "6",
      "aspect_ratio": "16:9",
      "generate_audio": true
    }
  }'

Typical processing time: ~120 seconds.

Quick Start — Image to Video

curl -X POST https://api.eachlabs.ai/v1/prediction \
  -H "Content-Type: application/json" \
  -H "X-API-Key: $EACHLABS_API_KEY" \
  -d '{
    "model": "bytedance-seedance-2-0-image-to-video-fast",
    "version": "0.0.1",
    "input": {
      "prompt": "Camera slowly pushes from wide to medium close-up as the lion roars at golden hour. Warm amber light rakes across the mane. Narrator (weathered British male, 50s): \"He has ruled this land for seven years.\"",
      "image_url": "https://your-cdn.example.com/lion.jpg",
      "resolution": "720p",
      "duration": "8",
      "aspect_ratio": "16:9",
      "generate_audio": true
    }
  }'

Typical processing time: ~150 seconds.

Start-to-end transition

Pass end_image_url to lock the final frame and let the model interpolate motion between the two:

{
  "model": "bytedance-seedance-2-0-image-to-video-fast",
  "version": "0.0.1",
  "input": {
    "prompt": "Smooth parallax zoom through the scene, crossfading into the second look",
    "image_url": "https://your-cdn.example.com/frame-start.jpg",
    "end_image_url": "https://your-cdn.example.com/frame-end.jpg",
    "duration": "6",
    "resolution": "720p"
  }
}

Polling

curl https://api.eachlabs.ai/v1/prediction/{PREDICTION_ID} \
  -H "X-API-Key: $EACHLABS_API_KEY"
StatusMeaning
processingStill running — poll again
successDone — read output (video URL)
errorFailed — read message / details

Webhook (alternative to polling)

Pass "webhook_url": "https://your.host/path" in the create body. EachLabs POSTs:

{
  "exec_id": "prediction-uuid",
  "status": "succeeded",
  "output": "https://...",
  "error": ""
}

status is "succeeded" or "failed". Return 2xx within 30 seconds.

Parameters (both slugs share most of these)

ParameterTypeRequiredDefaultOptionsDescription
promptstringYesText prompt. For i2v, describes the motion/action; supports timeline prompting and dialogue lines for native audio.
image_urlstringYes (i2v only)JPEG / PNG / WebP, max 30 MBStarting frame. Publicly reachable HTTPS URL.
end_image_urlstringNo (i2v only)JPEG / PNG / WebP, max 30 MBFinal frame; model interpolates between image_url and this.
resolutionstringNo720p480p, 720p480p = faster/cheaper, 720p = balanced.
durationstringNoautoauto, 415Clip length in seconds. auto lets the model pick from the prompt.
aspect_ratiostringNoautoauto, 21:9, 16:9, 4:3, 1:1, 3:4, 9:16For i2v, auto infers from the input image.
generate_audiobooleanNotrueSynchronized SFX, ambience, and lip-synced speech. Cost is the same whether on or off.
seedstringNoReproducibility hint — results may still drift slightly.
end_user_idstringNoYour end-user identifier.

Pricing

Dynamic, charged per second of output video:

ResolutionRate
480p$0.1129 / second
720p (default)$0.2419 / second

Audio generation does not change cost. A 6-second 720p clip ≈ $1.45; a 10-second 480p clip ≈ $1.13.

Prompt Tips

  • Timeline prompting: sequence beats with time or cut words — "Wide shot: … Cut to close-up: … Finally: …". Seedance 2.0 respects temporal structure better than single-sentence prompts.
  • Dialogue with native audio: write the line in quotes and describe the speaker ("Weathered British male narrator, 50s, calm authoritative voice, says: …"). Lip-sync and ambience are generated in the same pass.
  • Camera language: use real film vocabulary ("slow push-in", "rack focus", "dolly left", "handheld", "crane up"). The model follows director-level cues.
  • Physics cues: mention weight, momentum, and material interactions ("dust scatters as boot lands", "fabric settles after the spin") to unlock the realistic-physics behavior.

Rate Limits & Limits

LimitValue
Create requests100 / minute per key
Concurrent predictions10 per key
File inputsPublicly reachable HTTPS URLs only (JPEG/PNG/WebP, max 30 MB). No data-URIs, no localhost.

Errors

Error body: {"status": "error", "message": "...", "details": "..."}

CodeMeaning
400Invalid input
401Missing / invalid X-API-Key
404Unknown model or prediction id
429Rate limited — back off
5xxRetry with exponential backoff

Security Constraints

  • No arbitrary URL loading: image_url / end_image_url must point to your own HTTPS-reachable storage (S3, GCS, CDN). Do not forward user-pasted URLs without validation.
  • No third-party API tokens: never forward provider tokens through input — authentication is exclusively via the EachLabs API key.
  • Validate before calling: resolve the live request_schema via GET /v1/model?slug=<slug> before constructing input.

Parameter Reference

See references/MODELS.md for the full per-slug table with defaults and options.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

34.26%
按下载量换算36

Claude

31.91%
按下载量换算33

Cursor

18.44%
按下载量换算19

Gemini CLI

8.54%
按下载量换算9

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

可疑

权限和风险

敏感数据

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

安装前确认

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

来源信息

继续浏览同类 Skills