Muapi/stylized-pbr-animation-ltx-2
019
Stylized PBR Animation [LTX-2]
Base model: LTXV2 Trained words: PBRSty1e, (PBRSty1e, 3d animation), shiny skin, realistic style
๐ง 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": "stylized-pbr-animation-ltx-2",
"lora_strength": 1.0,
"width": 768,
"height": 512,
"num_frames": 97
}
print(requests.post(url, headers=headers, json=payload).json())