Spaces:
Running
Running
arxivgpt kim
commited on
Update app.py
Browse files
app.py
CHANGED
@@ -16,7 +16,7 @@ st.sidebar.title("ViDraft")
|
|
16 |
menus = {
|
17 |
"Home": [],
|
18 |
"Free Stock": ["Template Video", "Search Video", "Search Image"],
|
19 |
-
"Image": ["Face Swap", "Remove Background", "Compositing"],
|
20 |
"Video": ["Remove Background", "Compositing"],
|
21 |
"Sound": ["TTS(Voice)" ,"Image SFX", "Video SFX"],
|
22 |
"Scripts": []
|
@@ -166,7 +166,22 @@ if selected_menu == "Sound" and st.session_state['current_sub_menu'] == "Video S
|
|
166 |
# iframe์ ์ฌ์ฉํ์ฌ ์ธ๋ถ URL ์๋ฒ ๋
|
167 |
components.iframe("https://arxivgpt-vidvsfx.hf.space", width=None, height=1800, scrolling=True)
|
168 |
|
169 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
170 |
# 'Home' ํ์ด์ง ํ์
|
171 |
if selected_menu == "Home":
|
172 |
st.image("banner2.jpg", use_column_width=True)
|
|
|
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"],
|
22 |
"Scripts": []
|
|
|
166 |
# iframe์ ์ฌ์ฉํ์ฌ ์ธ๋ถ URL ์๋ฒ ๋
|
167 |
components.iframe("https://arxivgpt-vidvsfx.hf.space", width=None, height=1800, scrolling=True)
|
168 |
|
169 |
+
|
170 |
+
# 'Image' ๋ฉ๋ด์์ 'Image Matching' ์ ํ ์
|
171 |
+
if selected_menu == "Image" and st.session_state['current_sub_menu'] == "Image Matching":
|
172 |
+
st.header("Image Matching")
|
173 |
+
# iframe์ ์ฌ์ฉํ์ฌ ์ธ๋ถ URL ์๋ฒ ๋
|
174 |
+
components.iframe("https://arxivgpt-vidimatch.hf.space", width=None, height=1800, scrolling=True)
|
175 |
+
|
176 |
+
# 'Image' ๋ฉ๋ด์์ 'URL Screenshot' ์ ํ ์
|
177 |
+
if selected_menu == "Image" and st.session_state['current_sub_menu'] == "URL Screenshot":
|
178 |
+
st.header("URL Screenshot")
|
179 |
+
# iframe์ ์ฌ์ฉํ์ฌ ์ธ๋ถ URL ์๋ฒ ๋
|
180 |
+
components.iframe("https://arxivgpt-vidiscreen.hf.space", width=None, height=1800, scrolling=True)
|
181 |
+
|
182 |
+
|
183 |
+
|
184 |
+
|
185 |
# 'Home' ํ์ด์ง ํ์
|
186 |
if selected_menu == "Home":
|
187 |
st.image("banner2.jpg", use_column_width=True)
|