Spaces:
Sleeping
Sleeping
arxivgpt kim
commited on
Commit
β’
054f31c
1
Parent(s):
f9a4649
Update app.py
Browse files
app.py
CHANGED
@@ -15,10 +15,10 @@ st.sidebar.title("ViDraft")
|
|
15 |
# λ©λ΄ λ° νμ λ©λ΄ μ μ
|
16 |
menus = {
|
17 |
"Home": [],
|
18 |
-
"BEST": ["Face Swap", "Image Matching", "HOT"],
|
19 |
"Free Stock": ["Template Video", "Search Video", "Search Image"],
|
20 |
"Image": ["Face Swap", "Remove Background", "Compositing", "Image Matching", "URL Screenshot"],
|
21 |
-
"Video": ["Remove Background", "Compositing"],
|
22 |
"Sound": ["TTS(Voice)" ,"Image SFX", "Video SFX","Image Music", "Video Music"]
|
23 |
}
|
24 |
|
@@ -211,6 +211,19 @@ if selected_menu == "BEST" and st.session_state['current_sub_menu'] == "HOT":
|
|
211 |
components.iframe("https://seawolf2357-vidraftgpu.hf.space", width=None, height=1800, scrolling=True)
|
212 |
|
213 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
214 |
# 'Home' νμ΄μ§ νμ
|
215 |
if selected_menu == "Home":
|
216 |
st.image("banner2.jpg", use_column_width=True)
|
|
|
15 |
# λ©λ΄ λ° νμ λ©λ΄ μ μ
|
16 |
menus = {
|
17 |
"Home": [],
|
18 |
+
"BEST": ["Face Swap", "Image Matching", "Face Avatar", "HOT"],
|
19 |
"Free Stock": ["Template Video", "Search Video", "Search Image"],
|
20 |
"Image": ["Face Swap", "Remove Background", "Compositing", "Image Matching", "URL Screenshot"],
|
21 |
+
"Video": ["Face Avatar", "Remove Background", "Compositing"],
|
22 |
"Sound": ["TTS(Voice)" ,"Image SFX", "Video SFX","Image Music", "Video Music"]
|
23 |
}
|
24 |
|
|
|
211 |
components.iframe("https://seawolf2357-vidraftgpu.hf.space", width=None, height=1800, scrolling=True)
|
212 |
|
213 |
|
214 |
+
# 'video' λ©λ΄μμ 'Face Avatar' μ ν μ
|
215 |
+
if selected_menu == "Video" and st.session_state['current_sub_menu'] == "Face Avatar":
|
216 |
+
st.header("Remove Background")
|
217 |
+
# iframeμ μ¬μ©νμ¬ μΈλΆ URL μλ² λ
|
218 |
+
components.iframe("https://arxivgpt-face.hf.space", width=None, height=1800, scrolling=True)
|
219 |
+
|
220 |
+
# 'BEST' λ©λ΄μμ 'Face Avatar' μ ν μ
|
221 |
+
if selected_menu == "BEST" and st.session_state['current_sub_menu'] == "Face Avatar":
|
222 |
+
st.header("Remove Background")
|
223 |
+
# iframeμ μ¬μ©νμ¬ μΈλΆ URL μλ² λ
|
224 |
+
components.iframe("https://arxivgpt-face.hf.space", width=None, height=1800, scrolling=True)
|
225 |
+
|
226 |
+
|
227 |
# 'Home' νμ΄μ§ νμ
|
228 |
if selected_menu == "Home":
|
229 |
st.image("banner2.jpg", use_column_width=True)
|