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

معرّف النموذج
pixverse-lipsync
المزود
PixVerse
الفئة
توليد الفيديو
تاريخ الإصدار
14 يوليو 2025
الإدخال
نصفيديوصوت
الإخراج
فيديو
نقاط النهاية
POST/v1/videos/generations
معرّفات نموذج بديلة
pixverse/lipsync

أسعار واجهة Pixverse Lip Sync API

أسعار الدفع حسب الاستخدام مباشرة من كتالوج EmpirioLabs. تدفع فقط مقابل ما تستخدمه، بدون حد أدنى شهري.

النوع
المواصفة
السعر
Speech
per second
$0.08
قارن في صفحة الأسعار الكاملة

كيفية استدعاء واجهة Pixverse Lip Sync API

يعمل Pixverse Lip Sync عبر POST /v1/videos/generations. يعيد الطلب job_id فورًا؛ استعلم عن GET /v1/jobs/{job_id} حتى تكتمل المهمة ثم اقرأ روابط الإخراج من النتيجة. احصل على مفتاح API من لوحة تحكم EmpirioLabs.

cURL: إرسال المهمة
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: استعلام النتيجة
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

معلمات الطلب التي تدعمها واجهة Pixverse Lip Sync API على EmpirioLabs. تُطبق القيم الافتراضية عند حذف أي حقل.

المعاملالنوعالافتراضيالنطاق / القيمالوصف
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. جدول الأسعار المباشر في هذه الصفحة يطابق دائمًا ما تحتسبه الواجهة.

أي نقطة نهاية يستخدم Pixverse Lip Sync؟

يُقدَّم Pixverse Lip Sync عبر POST /v1/videos/generations على api.empiriolabs.ai مع مصادقة Bearer القياسية.

هل يمكنني تجربة Pixverse Lip Sync في المتصفح قبل الدمج؟

نعم. يشغّل ملعب EmpirioLabs نموذج Pixverse Lip Sync في المتصفح بنفس المعلمات التي تتيحها الواجهة، لتجربة المطالبات قبل كتابة الكود.

كيف أحصل على مفتاح API لنموذج Pixverse Lip Sync؟

أنشئ حساب EmpirioLabs ثم أنشئ مفتاحًا من API Keys في لوحة التحكم. الفوترة برصيد الدفع حسب الاستخدام، فلا تدفع إلا مقابل الطلبات التي تنفذها.

هل أنت مستعد لاستخدام نقاط نهاية أفضل؟

تحقق من تسعيرنا أو تواصل إذا كنت ترغب في نشر نموذجك الخاص على مجموعتنا.