File size: 1,296 Bytes
843fe0e
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
ec326e1
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
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)