Perido353522 commited on
Commit
6e772d3
·
verified ·
1 Parent(s): 5ccd448

Create app.py

Browse files
Files changed (1) hide show
  1. app.py +30 -0
app.py ADDED
@@ -0,0 +1,30 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ```python
2
+ import gradio as gr
3
+
4
+ # Your all-in-one DeepReal SStudiotudio
5
+ with gr.Blocks(title="DeepReal Studio - Free AI Media Tools") as demo:
6
+ gr.Markdown("# 🧠 DeepReal Studio\nOne app for realistic face swap, lip sync, voice cloning, watermark removal & more")
7
+
8
+ with gr.Tabs():
9
+
10
+ with gr.Tab("🔄 Face Swap (Image)"):
11
+ gr.Interface.load("spaces/ALSv/FaceSwapAll") # All-in-one face swapping (best free one)
12
+
13
+ with gr.Tab("🗣️ Voice Clone + Text-to-Speech"):
14
+ gr.Interface.load("spaces/tonyassi/voice-clone") # Upload voice → clone → TTS
15
+
16
+ with gr.Tab("💬 Image to Talking Video (Lip Sync)"):
17
+ gr.Interface.load("spaces/KlingTeam/LivePortrait") # or SadTalker if you prefer
18
+
19
+ with gr.Tab("🎥 Video Lip Sync + Face Swap"):
20
+ gr.Interface.load("spaces/Uniaff/mainmainminavoiceclone") # Cloned voice + lip sync + face options
21
+
22
+ with gr.Tab("🚫 Watermark Remover (No Blur)"):
23
+
24
+ gr.Interface.load("spaces/ucalyptus/watermark-remover-app") # Clean AI removal
25
+
26
+ with gr.Tab("🖼️ Text to Realistic Image"):
27
+ gr.Interface.load("spaces/stabilityai/stable-diffusion-3.5-large") # or any top SDXL space
28
+
29
+ demo.launch()
30
+ ```