Hermes Agent で Seedance を使う。
Seedance 2.0 は 4〜15秒・最大 1080p の動画を生成し、秒単位の課金は約 $0.05/秒から——RunAPI の動画モデルの中で秒あたりのコストが最も低いものです。マルチモーダル参照入力(画像、動画、音声 URL)、最初/最後のフレーム制御、ネイティブ音声同期に対応します。Hermes Agent は RunAPI のカスタムエンドポイント経由で呼び出します——custom:runapi を一度設定すれば、同じキーを再利用できます。
RunAPI を通じて Seedance 2.0 を使い、製品紹介動画を生成します。
要件:
- RUNAPI_API_KEY から APIキーを読み込む。
- custom:runapi プロバイダを base_url https://runapi.ai/v1 で使用する。
- POST https://runapi.ai/api/v1/seedance/text_to_video を呼び出す
- model を "seedance-2.0" に設定する。
- prompt に動画シーンの説明を設定する。
- duration_seconds を希望の尺に設定する(4〜15)。
- 横向き動画には aspect_ratio を "16:9" に設定する。
- タスクは非同期です。返された task_id を status が "completed" になるまでポーリングする。
- 完了したら、レスポンスの output から動画 URL を読み込む。
curl -X POST https://runapi.ai/api/v1/seedance/text_to_video \
-H "Authorization: Bearer $RUNAPI_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"model": "seedance-2.0",
"prompt": "A ceramic coffee mug rotates slowly on a wooden table, steam rising, warm morning light from a window, cinematic",
"duration_seconds": 8,
"aspect_ratio": "16:9",
"output_resolution": "1080p"
}'
{
"task_id": "tsk_abc123",
"status": "pending",
"model": "seedance-2.0"
}
Hermes Agent で Seedance を使う3ステップ
Configure RunAPI
Set RUNAPI_API_KEY in the environment where Hermes Agent runs. If you already added RunAPI as a custom:runapi provider for chat, the same key and base_url handle video generation. If not, add the custom provider with base_url https://runapi.ai/v1 and run hermes doctor.
export RUNAPI_API_KEY=runapi_xxx
Call Seedance text_to_video
Send a POST to the text_to_video endpoint with model set to seedance-2.0. Include a prompt, duration_seconds (4–15), aspect_ratio, and output_resolution. Optionally attach first_frame_image_url, reference_image_urls, or reference_audio_urls for multimodal control. Hermes Agent sends this through the custom:runapi provider.
POST /api/v1/seedance/text_to_video
Poll for the result
The endpoint returns a task_id immediately. Poll the task status endpoint until the status is completed, then read the output video URL from the response. Billing is per-second based on the generated video duration and resolution.
GET /api/v1/seedance/text_to_video/tsk_abc123
Seedance API パラメータ
| パラメータ | 型 | 説明 |
|---|---|---|
model |
string |
Required. seedance-2.0, seedance-2.0-fast, seedance-1.5-pro, seedance-v1-pro, seedance-v1-lite. |
prompt |
string |
Required. Text description of the video scene to generate. |
duration_seconds |
integer |
Video length in seconds. 4–15 for Seedance 2.0, 5 or 10 for v1 variants. |
aspect_ratio |
string |
Output aspect ratio. Accepted: 1:1, 4:3, 3:4, 16:9, 9:16, 21:9, auto. |
output_resolution |
string |
Video resolution. Accepted: 480p, 720p, 1080p. Higher resolution costs more per second. |
first_frame_image_url |
string |
Optional. URL of an image to use as the first frame. Enables image-to-video workflows. |
last_frame_image_url |
string |
Optional. URL of an image to use as the last frame. Constrains the ending scene. |
reference_image_urls |
array |
Optional. URLs of reference images for pose, depth, or edge guidance. |
reference_audio_urls |
array |
Optional. URLs of reference audio files for native audio sync in the generated video. |
reference_video_urls |
array |
Optional. URLs of reference videos for motion or style transfer. |
callback_url |
string |
Optional. Webhook URL that receives a POST when the task completes. |
Hermes AgentのSeedanceとは?
ByteDanceのSeedance 2.0は音声・動画統合出力を1回の生成で実現します。Hermes Agentのcustom:runapi providerを通じて4〜15秒・最大1080pの動画を秒単位課金で生成でき、RunAPI動画モデルの中で最低の1秒あたりコストです。
Seedanceの活用例
シーントランジション付きマルチショットナラティブ
シーンカット間でキャラクターの一貫性を維持したマルチショット動画シーケンスを構築します。Seedanceは1回の生成でショット間のトランジションと継続性を処理します。
音声同期ストーリーテリング
参照音声トラックを渡してSeedanceに音声に合わせた動画モーションを生成させます。ミュージックビデオ・ポッドキャストビジュアライゼーション・対話駆動のコンテンツに適しています。
カットシーンのプリビジュアライゼーション
対話とシーン指示付きのゲームや映画のカットシーンプロトタイプを作成します。Seedanceはビジュアルと音声を同時にレンダリングし、制作前にディレクターがプレビューできます。
Seedance + Hermes Agent のよくある質問
Yes. Configure RunAPI as a custom provider in Hermes Agent with base_url https://runapi.ai/v1, then call the text_to_video endpoint with model set to seedance-2.0. The same API key handles both chat and video generation.
Seedance 2.0 leads several video generation leaderboards and offers native audio sync that many competitors lack. It generates audio and video in a single pass, while most other models require separate audio generation. Per-second billing on RunAPI also makes it more cost-predictable.
No. Hermes Agent sends HTTP requests through the custom:runapi provider the same way it sends chat requests. The text_to_video endpoint accepts a JSON body and returns a task ID. No additional plugins or extensions are required.
Currently Seedance 2.0 generates clips between 4 and 15 seconds. For longer content, chain multiple clips using character-consistent prompts and first/last frame anchoring. Hermes Agent can automate this chaining in a multi-step workflow.
Set the duration parameter in seconds (4-15) when calling the Seedance endpoint through your Hermes Agent custom:runapi provider. Billing scales linearly with duration, so Hermes Agent can optimize cost by requesting only the length needed.
Yes. Hermes Agent can dispatch multiple Seedance tasks simultaneously through RunAPI, each with different prompts or settings, and collect all results when they complete. This is useful for generating video variations at scale.
今すぐ Hermes Agent で Seedance を試す。
無料の RunAPI キーを取得し、custom:runapi プロバイダを設定して、Seedance 2.0 で秒単位課金の動画を生成しましょう。