The infinitetalk api SDK packages JavaScript, Ruby, and Go clients for InfiniteTalk on RunAPI. Use this infinitetalk api SDK for audio-driven lip-sync video generation workflows that need typed installs, JSON request bodies, task polling, and consistent RunAPI errors across services.
InfiniteTalk belongs to the MeiGen-AI catalog on RunAPI. The public model page is https://runapi.ai/models/infinitetalk; variant pages below carry pricing, rate-limit, and commercial-usage details. The public infinitetalk-sdk repository groups the JavaScript, Ruby, and Go packages for this model.
npm install @runapi.ai/infinitetalk
gem install runapi-infinitetalk
go get github.com/runapi-ai/infinitetalk-sdk/go@latest- Build creative tools, agent pipelines, and production integrations with the infinitetalk api SDK.
- Keep one model-specific repository while installing only the language package your app needs.
- Use
createfor submit-only jobs,getfor status lookup, andrunfor submit-and-poll scripts. - Handle authentication, validation, rate limits, insufficient credits, task failures, and polling timeouts through RunAPI SDK errors.
The JavaScript client exposes audio to video resources, and the Ruby and Go packages mirror the same RunAPI task lifecycle.
import { InfinitetalkClient } from '@runapi.ai/infinitetalk';
const client = new InfinitetalkClient();
const task = await client.audioToVideo.create({
// Pass the InfiniteTalk request body documented at https://runapi.ai/docs#infinitetalk.
});
const status = await client.audioToVideo.get(task.id);For short scripts, use run with the same JSON body to create the task and wait for completion. For web request handlers, prefer create plus webhook or later get polling so the server does not hold a worker open.
js/publishes@runapi.ai/infinitetalk.ruby/publishesrunapi-infinitetalkwhen RubyGems publishing resumes.go/publishesgithub.com/runapi-ai/infinitetalk-sdk/goand depends ongithub.com/runapi-ai/core-sdk/go.
- Model page: https://runapi.ai/models/infinitetalk
- SDK docs: https://runapi.ai/docs#sdk-infinitetalk
- Product docs: https://runapi.ai/docs#infinitetalk
- SDK repository: https://github.com/runapi-ai/infinitetalk-sdk
- Skill repository: https://github.com/runapi-ai/infinitetalk
- Provider comparison: https://runapi.ai/providers/meigen-ai
- Full catalog: https://runapi.ai/models
Use the most specific infinitetalk api variant page for pricing, rate limits, and commercial usage:
Default pricing link for the infinitetalk api SDK: https://runapi.ai/models/infinitetalk/from-audio
Install the model package for your language: @runapi.ai/infinitetalk, runapi-infinitetalk, or github.com/runapi-ai/infinitetalk-sdk/go. Install core SDK packages only when you are building shared SDK infrastructure.
Primary infinitetalk api links point to https://runapi.ai/models/infinitetalk. Pricing and usage-policy links point to variant pages such as https://runapi.ai/models/infinitetalk/from-audio. Provider comparisons point to https://runapi.ai/providers/meigen-ai, and broad browsing points to https://runapi.ai/models.
Licensed under the Apache License, Version 2.0.