Spaces:
Running
Running
arxivgpt kim
commited on
Update app.py
Browse files
app.py
CHANGED
@@ -15,11 +15,11 @@ st.sidebar.title("ViDraft")
|
|
15 |
# ๋ฉ๋ด ๋ฐ ํ์ ๋ฉ๋ด ์ ์
|
16 |
menus = {
|
17 |
"Home": [],
|
|
|
18 |
"Free Stock": ["Template Video", "Search Video", "Search Image"],
|
19 |
"Image": ["Face Swap", "Remove Background", "Compositing", "Image Matching", "URL Screenshot"],
|
20 |
"Video": ["Remove Background", "Compositing"],
|
21 |
-
"Sound": ["TTS(Voice)" ,"Image SFX", "Video SFX","Image Music", "Video Music"]
|
22 |
-
"Scripts": []
|
23 |
}
|
24 |
|
25 |
# ์ธ์
์ํ ์ด๊ธฐํ
|
@@ -190,9 +190,26 @@ if selected_menu == "Sound" and st.session_state['current_sub_menu'] == "Image M
|
|
190 |
st.header("Image Music")
|
191 |
# iframe์ ์ฌ์ฉํ์ฌ ์ธ๋ถ URL ์๋ฒ ๋
|
192 |
components.iframe("https://arxivgpt-vidim.hf.space", width=None, height=1800, scrolling=True)
|
193 |
-
|
194 |
|
|
|
|
|
|
|
|
|
|
|
|
|
195 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
196 |
|
197 |
# 'Home' ํ์ด์ง ํ์
|
198 |
if selected_menu == "Home":
|
|
|
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 |
|
25 |
# ์ธ์
์ํ ์ด๊ธฐํ
|
|
|
190 |
st.header("Image Music")
|
191 |
# iframe์ ์ฌ์ฉํ์ฌ ์ธ๋ถ URL ์๋ฒ ๋
|
192 |
components.iframe("https://arxivgpt-vidim.hf.space", width=None, height=1800, scrolling=True)
|
|
|
193 |
|
194 |
+
|
195 |
+
# 'BEST' ๋ฉ๋ด์์ 'Face Swap' ์ ํ ์
|
196 |
+
if selected_menu == "BEST" and st.session_state['current_sub_menu'] == "Face Swap":
|
197 |
+
st.header("Face Swap")
|
198 |
+
# iframe์ ์ฌ์ฉํ์ฌ ์ธ๋ถ URL ์๋ฒ ๋
|
199 |
+
components.iframe("https://seawolf2357-vidifs.hf.space", width=None, height=1800, scrolling=True)
|
200 |
|
201 |
+
# 'BEST' ๋ฉ๋ด์์ 'Image Matching' ์ ํ ์
|
202 |
+
if selected_menu == "BEST" and st.session_state['current_sub_menu'] == "Image Matching":
|
203 |
+
st.header("Image Matching")
|
204 |
+
# iframe์ ์ฌ์ฉํ์ฌ ์ธ๋ถ URL ์๋ฒ ๋
|
205 |
+
components.iframe("https://seawolf2357-vidimatch.hf.space", width=None, height=1800, scrolling=True)
|
206 |
+
|
207 |
+
# 'BEST' ๋ฉ๋ด์์ 'HOT' ์ ํ ์
|
208 |
+
if selected_menu == "BEST" and st.session_state['current_sub_menu'] == "HOT":
|
209 |
+
st.header("Image & Video EDIT")
|
210 |
+
# iframe์ ์ฌ์ฉํ์ฌ ์ธ๋ถ URL ์๋ฒ ๋
|
211 |
+
components.iframe("https://seawolf2357-vidraftgpu.hf.space", width=None, height=1800, scrolling=True)
|
212 |
+
|
213 |
|
214 |
# 'Home' ํ์ด์ง ํ์
|
215 |
if selected_menu == "Home":
|