Pixverse Lip Sync एपीआई

Aligns mouth movement in an existing video to an uploaded audio track or to text spoken by one of fourteen built-in voices.

PixVerseवीडियो जनरेशनरिलीज 14 जुल॰ 2025स्वामित्व वाला एंडपॉइंट

Pixverse Lip Sync के बारे में

Aligns mouth movement in an existing video to an uploaded audio track or to text spoken by one of fourteen built-in voices.

lipsyncaudio invideo editing

Pixverse Lip Sync की विशेषताएं

मॉडल ID
pixverse-lipsync
प्रदाता
PixVerse
श्रेणी
वीडियो जनरेशन
रिलीज
14 जुल॰ 2025
इनपुट
टेक्स्टवीडियोऑडियो
आउटपुट
वीडियो
एंडपॉइंट
POST/v1/videos/generations
वैकल्पिक मॉडल ID
pixverse/lipsync

Pixverse Lip Sync API की कीमतें

EmpirioLabs कैटलॉग से लाइव pay-as-you-go दरें। आप सिर्फ उतना ही भुगतान करते हैं जितना उपयोग करते हैं, कोई मासिक न्यूनतम नहीं।

प्रकार
स्पेक
दर
Speech
per second
$0.08
पूरे कीमत पेज पर तुलना करें

Pixverse Lip Sync API को कैसे कॉल करें

Pixverse Lip Sync POST /v1/videos/generations से चलता है। request तुरंत job_id देती है; job पूरा होने तक GET /v1/jobs/{job_id} को poll करें और परिणाम से आउटपुट URLs पढ़ें। EmpirioLabs डैशबोर्ड से API key प्राप्त करें।

cURL: job सबमिट करें
curl https://api.empiriolabs.ai/v1/videos/generations \
  -H "Authorization: Bearer $EMPIRIOLABS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "model": "pixverse-lipsync",
    "prompt": "Describe what you want Pixverse Lip Sync to generate."
  }'
cURL: परिणाम के लिए poll करें
curl https://api.empiriolabs.ai/v1/jobs/JOB_ID \
  -H "Authorization: Bearer $EMPIRIOLABS_API_KEY"
Python
import requests

response = requests.post(
    "https://api.empiriolabs.ai/v1/videos/generations",
    headers={"Authorization": "Bearer YOUR_EMPIRIOLABS_API_KEY"},
    json={
        "model": "pixverse-lipsync",
        "prompt": "Describe what you want Pixverse Lip Sync to generate.",
    },
)
job = response.json()

# Generation runs as an async job. Poll until it completes.
import time
while True:
    status = requests.get(
        f"https://api.empiriolabs.ai/v1/jobs/{job['job_id']}",
        headers={"Authorization": "Bearer YOUR_EMPIRIOLABS_API_KEY"},
    ).json()
    if status.get("status") in ("completed", "failed"):
        print(status)
        break
    time.sleep(5)
Pixverse Lip Sync API का पूरा संदर्भ

Pixverse Lip Sync API के पैरामीटर

EmpirioLabs पर Pixverse Lip Sync API द्वारा समर्थित request पैरामीटर। फ़ील्ड छोड़ने पर डिफ़ॉल्ट मान लागू होते हैं।

पैरामीटरप्रकारडिफॉल्टरेंज / मानविवरण
lip_sync_tts_contentstring--The line to speak. Used when no audio file is attached. Billed in 15-character blocks.
lip_sync_tts_speaker_idenumAutoAuto, Emily, James, Isabella, Liam, Chloe, Adrian, Harper, Av...Voice used for the spoken line. Auto picks one to suit the clip. Ignored when an audio file is attached.
videostring--Source video URL. Required.
audiostring--Audio URL to lip sync to. Takes precedence over the spoken text.

जानने योग्य

Aligns mouth movement in an existing video to speech, either from an audio file you supply or from text spoken by a built-in voice.

Inputs

  • video: the source clip, up to 300 seconds and 250MB.
  • audio: the speech to match, up to 300 seconds and 250MB.
  • Or lip_sync_tts_content with lip_sync_tts_speaker_id to have the model speak your text. Fourteen named voices are available plus Auto, which picks one to suit the clip.

Billing

  • Billed per second of speech. Text-to-speech input is metered in 15-character blocks at the same rate, so the charge tracks the length of the script rather than the length of the source video.

Input limits

  • Video: MP4, MOV or WebM, up to 1920px on the long edge.
  • Audio: MP3, WAV, M4A or AAC.

Pixverse Lip Sync API: आम सवाल

Pixverse Lip Sync API की कीमत कितनी है?

EmpirioLabs पर Pixverse Lip Sync का बिल उपयोग के अनुसार बनता है: Speech $0.08 per second। इस पेज की लाइव दर तालिका हमेशा API की वास्तविक बिलिंग से मेल खाती है।

Pixverse Lip Sync कौन सा endpoint उपयोग करता है?

Pixverse Lip Sync api.empiriolabs.ai पर POST /v1/videos/generations के ज़रिए मिलता है, मानक Bearer टोकन प्रमाणीकरण के साथ।

क्या मैं इंटीग्रेट करने से पहले ब्राउज़र में Pixverse Lip Sync आज़मा सकता हूं?

हां। EmpirioLabs playground ब्राउज़र में Pixverse Lip Sync को उन्हीं पैरामीटरों के साथ चलाता है जो API देता है, ताकि आप कोड लिखने से पहले prompt आज़मा सकें।

Pixverse Lip Sync की API key कैसे मिलेगी?

EmpirioLabs खाता बनाएं, फिर डैशबोर्ड में API Keys में key जनरेट करें। बिलिंग pay-as-you-go क्रेडिट से होती है, इसलिए आप सिर्फ अपनी requests का भुगतान करते हैं।

बेहतर समापन बिंदुओं का उपयोग करने के लिए तैयार हैं?

हमारे मूल्य निर्धारण की जाँच करें या यदि आप चाहते हैं कि आपका अपना मॉडल हमारे स्टैक पर तैनात किया जाए, तो पहुंचें।