InfiniteTalk API
Audio-driven talking-head animation — lip-sync and animate a portrait from any audio input.
curl -X POST https://runapi.ai/api/v1/infinitetalk/audio_to_video \
-H "Authorization: Bearer $RUNAPI_KEY" \
-H "Content-Type: application/json" \
-d '{
"model": "infinitetalk-from-audio",
"image_url": "https://cdn.runapi.ai/public/samples/portrait.jpg",
"audio_url": "https://cdn.runapi.ai/public/samples/voice.mp3"
}'
import { InfinitetalkClient } from "@runapi.ai/infinitetalk";
const client = new InfinitetalkClient();
const result = await client.audioToVideo.run({
model: "infinitetalk-from-audio",
image_url: "https://cdn.runapi.ai/public/samples/portrait.jpg",
audio_url: "https://cdn.runapi.ai/public/samples/voice.mp3",
});
<?php
require __DIR__ . "/vendor/autoload.php";
use RunApi\Infinitetalk\InfinitetalkClient;
$client = new InfinitetalkClient();
$result = $client->audioToVideo->run([
'model' => 'infinitetalk-from-audio',
'image_url' => 'https://cdn.runapi.ai/public/samples/portrait.jpg',
'audio_url' => 'https://cdn.runapi.ai/public/samples/voice.mp3',
]);
require "runapi/infinitetalk"
client = RunApi::Infinitetalk::Client.new
result = client.audio_to_video.run(
model: "infinitetalk-from-audio",
image_url: "https://cdn.runapi.ai/public/samples/portrait.jpg",
audio_url: "https://cdn.runapi.ai/public/samples/voice.mp3"
)
npx skills add runapi-ai/infinitetalk -g
# Claude Code
claude mcp add runapi -s user -- npx -y @runapi.ai/mcp
# Codex
codex plugin install runapi-mcp@agents
# Cursor / Windsurf / VS Code
npx @runapi.ai/mcp init cursor
InfiniteTalk is MeiGen-AI's audio-driven talking head animation model that generates lip-synced facial animations from an audio input and a reference image. It produces natural head movements and expressions synchronized to speech.
- Meerdere varianten voor verschillende snelheid-/kwaliteitsniveaus
- Modelskill bevat docs, schema's en setupnotities
- Werkt met appgerichte codeerworkflows
- Mislukte generaties worden niet in rekening gebracht
Prijzen
Technische details
| Model-ID | infinitetalk-from-audio |
| Provider | MeiGen-AI |
| Modaliteit | video |
| Taaktype | asynchronous |
| Facturatie-eenheid | second |
| API endpoint | /api/v1/infinitetalk/audio_to_video |
| Commerciële licentie | Ja — inbegrepen via API |
| Catalogusstatus | Operationeel |
Installeer de InfiniteTalk skill voor appontwikkeling
Laad modeldocs, schema's, prijsnotities en setupstappen in je codeworkspace.
# Install the model skill for app development workflows
npx skills add runapi-ai/infinitetalk -g
Install the InfiniteTalk skill for this app: 1. Add runapi-ai/infinitetalk with the skills installer. 2. Load SKILL.md in this workspace. 3. Use its docs, schemas, pricing notes, and setup steps when adding model features. 4. Confirm the install path when done.
Van modelskill naar eerste resultaat in vier stappen
Kies het model
Kies het model en de variant die passen bij je outputtype, kwaliteitslat en latencydoel.
Configureren
Stel je RunAPI-key in en installeer de modelskill in je codeworkspace.
Bouwen
Gebruik de skill-instructies om de modelfeature in je applicatie toe te voegen.
Ontvangen
Poll op task-ID, stream wanneer ondersteund of verwerk de webhook-callback.
Wat is de InfiniteTalk API?
InfiniteTalk is MeiGen-AI's audio-driven avatar model, generating lip-synced animation from a portrait and audio input. Through RunAPI, it shares unified API access and billing.
Waarom de InfiniteTalk API via RunAPI gebruiken
Eén auth, elke provider
Met één RunAPI-sleutel ontgrendel je de hele catalogus. Geen aparte accounts, geen sleutelrotatie per integratie.
Uniforme prijzen & billing
Prijs per call in USD, maandelijks gefactureerd. Mislukte generaties worden niet in rekening gebracht.
Skill met schema's
Getypeerde schema's en setupnotities zitten in de modelskill, zodat implementatie start vanuit het juiste contract.
Veelgestelde vragen
What inputs does InfiniteTalk require?
A portrait image (face clearly visible) and an audio file. The model generates a video of the portrait speaking the audio with lip sync.
How accurate is the lip sync?
InfiniteTalk produces frame-accurate lip sync matched to the input audio, with natural mouth shapes for speech sounds.
Does it animate more than just the mouth?
Yes — the model generates natural head movement, eyebrow expressions, and subtle facial micro-expressions synchronized with speech patterns.
What audio formats are supported?
MP3, WAV, AAC, MP4, and OGG are supported formats. The audio drives both lip sync timing and expression intensity.
Is there a maximum video length?
InfiniteTalk supports generating long-form talking head video — the output length matches the input audio duration.
Met welke variant moet ik beginnen?
Kies de goedkoopste variant die aan je kwaliteitsnorm voldoet. De meeste teams beginnen met de snelle variant en stappen over op pro voor productie.
Is er een gratis tier?
Nieuwe accounts krijgen de eerste calls gratis op elk model. Daarna betaal je per call.
Streamen jullie resultaten?
Waar streaming beschikbaar is, streamt RunAPI end-to-end.
Hoe worden mislukkingen gefactureerd?
Mislukte generations worden niet in rekening gebracht.
Worden outputs gecachet?
Gegenereerde outputs worden opgeslagen en zijn op te vragen via task-ID. Inputs worden niet gecachet.
Mag ik het commercieel gebruiken?
Ja — commercieel gebruik is inbegrepen voor elke variant, tenzij een modellicentie het expliciet beperkt. Dat staat aangegeven op de variantpagina.
Hoe zit het met rate limits?
Rate limits per key schalen mee met je usage tier. Zie de prijzenpagina voor de actuele limieten.
Waar kan ik problemen melden?
Open een issue in de publieke GitHub-repo of mail support.
Als je de InfiniteTalk API goed vindt, probeer deze dan eens
Begin met bouwen met de InfiniteTalk API.
- audio_to_video