Spaces:
Running
Running
| 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) |