bfs-best-face-swap / README.md
Muapi's picture
Add BFS - Best Face Swap
f0259b3 verified
metadata
license: openrail++
library_name: diffusers
base_model: Lightricks/LTX-Video
tags:
  - lora
  - text-to-video
  - ltx
  - ltx-video
  - ltxv-2.3
pipeline_tag: text-to-video

BFS - Best Face Swap

preview

Base model: LTXV 2.3 Trained words: head_swap: FACE: [describe the new face here] ACTION: [describe the action from original video here]

🧠 Usage (Python)

🔑 Get your MUAPI key from muapi.ai/access-keys

import requests, os
url = "https://api.muapi.ai/api/v1/ltx_lora_video"
headers = {"Content-Type": "application/json", "x-api-key": os.getenv("MUAPIAPP_API_KEY")}
payload = {
    "prompt": "masterpiece, best quality",
    "lora_model": "bfs-best-face-swap",
    "lora_strength": 1.0,
    "width": 768,
    "height": 512,
    "num_frames": 97
}
print(requests.post(url, headers=headers, json=payload).json())