Deeprealstudio / app.py
Perido353522's picture
Update app.py
ec326e1 verified
import gradio as gr
# Your all-in-one DeepReal Studio
with gr.Blocks(title="DeepReal Studio - Free AI Media Tools") as demo:
gr.Markdown("# 🧠 DeepReal Studio\nOne app for realistic face swap, lip sync, voice cloning, watermark removal & more")
with gr.Tabs():
with gr.Tab("πŸ”„ Face Swap (Image)"):
gr.Interface.load("spaces/ALSv/FaceSwapAll") # All-in-one face swapping (best free one)
with gr.Tab("πŸ—£οΈ Voice Clone + Text-to-Speech"):
gr.Interface.load("spaces/tonyassi/voice-clone") # Upload voice β†’ clone β†’ TTS
with gr.Tab("πŸ’¬ Image to Talking Video (Lip Sync)"):
gr.Interface.load("spaces/KlingTeam/LivePortrait") # or SadTalker if you prefer
with gr.Tab("πŸŽ₯ Video Lip Sync + Face Swap"):
gr.Interface.load("spaces/Uniaff/mainmainminavoiceclone") # Cloned voice + lip sync + face options
with gr.Tab("🚫 Watermark Remover (No Blur)"):
gr.Interface.load("spaces/ucalyptus/watermark-remover-app") # Clean AI removal
with gr.Tab("πŸ–ΌοΈ Text to Realistic Image"):
gr.Interface.load("spaces/stabilityai/stable-diffusion-3.5-large") # or any top SDXL space
demo.launch(ssr_mode=False)