유연한 파라미터
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설명을 사용할 수 없습니다.
생성된 asset을 개선합니다.
한 미디어 형식을 다른 형식으로 바꿉니다.
프로덕션 flow에 유틸리티 호출을 추가합니다.
quickstart에 표시된 모델 ID를 전달하세요.
네. 호출 또는 단위 기준으로 측정됩니다.