Views
No views yet
3DREAL3DREAL-strong-v2.safetensors)enable_detail_refine option (extra 2× spatial‑upscale + detailer pass). File: 3DREAL-strong-v2.safetensors.
Top = generated result · Bottom = 3D render input


1import fal_client
2
3result = fal_client.subscribe(
4 "fal-ai/ltx-2.3-quality/render-to-real",
5 arguments={
6 "video_url": "<your 3D / CG / game render>",
7 "image_url": "<optional photoreal reference for the first frame>",
8 # the prompt always keeps the 3DREAL trigger; describe the photoreal result
9 "prompt": "3DREAL. Make it photorealistic. A cargo ship stacked with shipping containers in a busy harbor.",
10 "resolution": "720p",
11 },
12)
13print(result["video"]["url"])3DREAL — always kept at the start of the promptvideo_url) + an optional photoreal reference for the first frame (image_url)3DREAL-light.safetensors) — faithful, gentle transformation. Stays close to the input's structure, composition and motion; fewer hallucinations. This is the default used by the hosted render-to-real endpoint.3DREAL-strong.safetensors) — stronger, more aggressive photoreal push. More realism and detail, often better on busy/complex scenes, but may drift a little more from the input.3DREAL-strong-v2.safetensors) — new, improved. Multi‑scene coherence (holds across scene cuts / multiple shots), audio generation, much better on talking characters (faces, mouth / lip motion, expression), and higher overall quality & detail. Pairs best with the endpoint's enable_detail_refine option for sharper, higher‑resolution output. See the example GIF in the update section above.1import fal_client
2
3result = fal_client.subscribe(
4 "fal-ai/ltx-2.3-quality/reference-video-to-video/lora",
5 arguments={
6 "video_url": "<your 3D / CG / game render>",
7 "image_url": "<photoreal reference for the first frame>",
8 "prompt": "3DREAL. Make it photorealistic. <your scene>.",
9 "loras": [{"path": "<Light or Strong .safetensors URL>", "scale": 1.0}],
10 "resolution": {"width": 1280, "height": 704},
11 },
12)
13print(result["video"]["url"])13DREAL. Make it photorealistic. A cargo ship stacked with shipping containers in a busy harbor at dawn.
23DREAL. Make it photorealistic. A steam train winding through a misty mountain valley.
33DREAL. Make it photorealistic. A lone car driving down an endless desert highway at sunset.
43DREAL. Make it photorealistic. A grand ballroom with crystal chandeliers, slow camera glide.
53DREAL. Make it photorealistic. A coastal cliff with a lighthouse and crashing waves at golden hour.
63DREAL. Make it photorealistic. A sleek bullet train speeding across green countryside.