柔軟なパラメータ
source_image_url を含む 1 個のドキュメント済みパラメータを設定できます。
curl -X POST https://runapi.ai/api/v1/omnihuman/human_identification \
-H "Authorization: Bearer $RUNAPI_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"model": "omnihuman-1.5-human-identification",
"prompt": "このポートレートとナレーション音声から 720p のトーキングヘッド動画を生成し、被写体マスクで話者を分離してください。"
}'
import { OmnihumanClient } from "@runapi.ai/omnihuman";
const client = new OmnihumanClient();
const result = await client.humanIdentification.run({
model: "omnihuman-1.5-human-identification",
prompt: "このポートレートとナレーション音声から 720p のトーキングヘッド動画を生成し、被写体マスクで話者を分離してください。",
});
import os
import requests
response = requests.post(
"https://runapi.ai/api/v1/omnihuman/human_identification",
headers={"Authorization": f"Bearer {os.environ['RUNAPI_API_KEY']}"},
json={"model":"omnihuman-1.5-human-identification","prompt":"このポートレートとナレーション音声から 720p のトーキングヘッド動画を生成し、被写体マスクで話者を分離してください。"}
)
response.raise_for_status()
<?php
$client = curl_init("https://runapi.ai/api/v1/omnihuman/human_identification");
curl_setopt_array($client, [
CURLOPT_HTTPHEADER => ["Authorization: Bearer " . getenv("RUNAPI_API_KEY"), "Content-Type: application/json"],
CURLOPT_POSTFIELDS => json_encode([
'model' => 'omnihuman-1.5-human-identification',
'prompt' => 'このポートレートとナレーション音声から 720p のトーキングヘッド動画を生成し、被写体マスクで話者を分離してください。',
])
]);
$response = curl_exec($client);
RunApi client = new RunApi(System.getenv("RUNAPI_API_KEY"));
Task task = client.humanIdentification().run({"model":"omnihuman-1.5-human-identification","prompt":"このポートレートとナレーション音声から 720p のトーキングヘッド動画を生成し、被写体マスクで話者を分離してください。"});
task.waitForResult();
require "runapi/omnihuman"
client = RunApi::Omnihuman::Client.new
result = client.human_identification.run(
model: "omnihuman-1.5-human-identification",
prompt: "このポートレートとナレーション音声から 720p のトーキングヘッド動画を生成し、被写体マスクで話者を分離してください。"
)
client := runapi.NewClient(os.Getenv("RUNAPI_API_KEY"))
task, err := client.humanIdentification.Run({"model":"omnihuman-1.5-human-identification","prompt":"このポートレートとナレーション音声から 720p のトーキングヘッド動画を生成し、被写体マスクで話者を分離してください。"})
if err != nil { log.Fatal(err) }
task.Wait()
$ runapi generate \
--model omnihuman-1.5-human-identification \
--endpoint human_identification \
--wait
3 個のバージョンを利用可能
モデルを選んで、数秒で生成できます。
モデルを選んで、数秒で生成できます。
| プロバイダー | Bytedance |
| モデル ID | omnihuman-1.5-human-identification |
| モダリティ | Utility |
| タスク種別 | Asynchronous |
| API エンドポイント | /api/v1/omnihuman/human_identification |
| 請求単位 | call |
| 入力パラメータ | source_image_url |
| カタログ状態 | 稼働中 |
無料で登録し、ダッシュボードから omnihuman-1.5-human-identification 用の API キーを作成します。
/api/v1/omnihuman/human_identification に omnihuman-1.5-human-identification のモデル ID とパラメータを指定して POST リクエストを送信します。
タスクをポーリングするかコールバックに従って、完了した omnihuman-1.5-human-identification の結果を取得します。
source_image_url を含む 1 個のドキュメント済みパラメータを設定できます。
1 個の公開 endpoint を提供しています: human_identification。
call に基づいて計量課金されます。サブスクリプション不要。
source_image_url説明はありません。
生成済みアセットを改善します。
あるメディア形式を別の形式へ変換します。
本番フローにユーティリティ呼び出しを追加します。
quickstart に表示されるモデル ID を渡してください。
はい。呼び出しまたは単位ごとの従量課金です。