arxivgpt kim commited on
Commit
fe200d2
ยท
verified ยท
1 Parent(s): bf41e06

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +17 -2
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)