Spaces:
Running
Running
arxivgpt kim
commited on
Update app.py
Browse files
app.py
CHANGED
@@ -18,7 +18,7 @@ menus = {
|
|
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", "Video Music"],
|
22 |
"Scripts": []
|
23 |
}
|
24 |
|
@@ -184,9 +184,16 @@ if selected_menu == "Sound" and st.session_state['current_sub_menu'] == "Video M
|
|
184 |
st.header("Video Music")
|
185 |
# iframe์ ์ฌ์ฉํ์ฌ ์ธ๋ถ URL ์๋ฒ ๋
|
186 |
components.iframe("https://arxivgpt-vidsm.hf.space", width=None, height=1800, scrolling=True)
|
|
|
|
|
|
|
|
|
|
|
|
|
187 |
|
188 |
|
189 |
|
|
|
190 |
# 'Home' ํ์ด์ง ํ์
|
191 |
if selected_menu == "Home":
|
192 |
st.image("banner2.jpg", use_column_width=True)
|
@@ -210,11 +217,12 @@ if selected_menu == "Home":
|
|
210 |
- **Video SFX**: "Elevate your videos with extraordinary special effects. Whether you're creating an action-packed adventure or a serene landscape, our Video SFX library brings your vision to life."
|
211 |
- **Image Matching**: "Unveil the synergy between visuals with our Image Matching technology. Let AI seamlessly analyze and match disparate images, bridging the gap between creativity and coherence."
|
212 |
- **Remote URL Screenshot**: "Capture the essence of any website instantly with Remote URL Screenshot. Simply input a URL and let our system fetch and present a crisp snapshot of the site's main page, effortlessly."
|
|
|
213 |
- **Video to Music**: "Elevate your videos to a symphonic level with Video to Music. Upload any footage and witness as our AI discerns the essence of your visuals, crafting a harmonious soundtrack tailored specifically to enhance your video. Seamlessly integrated, the result is a beautifully augmented video experience, enriched with its own unique, AI-generated music."
|
214 |
|
215 |
Join us to transform your creative ideas into reality with cutting-edge technology designed for creators, by creators.
|
216 |
|
217 |
-
-
|
218 |
"""
|
219 |
st.write(welcome_text)
|
220 |
|
|
|
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 |
|
|
|
184 |
st.header("Video Music")
|
185 |
# iframe์ ์ฌ์ฉํ์ฌ ์ธ๋ถ URL ์๋ฒ ๋
|
186 |
components.iframe("https://arxivgpt-vidsm.hf.space", width=None, height=1800, scrolling=True)
|
187 |
+
|
188 |
+
# 'sound' ๋ฉ๋ด์์ 'Image Music' ์ ํ ์
|
189 |
+
if selected_menu == "Sound" and st.session_state['current_sub_menu'] == "Image Music":
|
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":
|
199 |
st.image("banner2.jpg", use_column_width=True)
|
|
|
217 |
- **Video SFX**: "Elevate your videos with extraordinary special effects. Whether you're creating an action-packed adventure or a serene landscape, our Video SFX library brings your vision to life."
|
218 |
- **Image Matching**: "Unveil the synergy between visuals with our Image Matching technology. Let AI seamlessly analyze and match disparate images, bridging the gap between creativity and coherence."
|
219 |
- **Remote URL Screenshot**: "Capture the essence of any website instantly with Remote URL Screenshot. Simply input a URL and let our system fetch and present a crisp snapshot of the site's main page, effortlessly."
|
220 |
+
- **Image to Music**: "Elevate your image to a symphonic level with image to Music. Upload any footage and witness as our AI discerns the essence of your visuals, crafting a harmonious soundtrack tailored specifically to enhance your video. Seamlessly integrated, the result is a beautifully augmented video experience, enriched with its own unique, AI-generated music."
|
221 |
- **Video to Music**: "Elevate your videos to a symphonic level with Video to Music. Upload any footage and witness as our AI discerns the essence of your visuals, crafting a harmonious soundtrack tailored specifically to enhance your video. Seamlessly integrated, the result is a beautifully augmented video experience, enriched with its own unique, AI-generated music."
|
222 |
|
223 |
Join us to transform your creative ideas into reality with cutting-edge technology designed for creators, by creators.
|
224 |
|
225 |
+
- Contact: [email protected] *Powered by ArXivGPT, Huggingface, Gradio, Streamlit
|
226 |
"""
|
227 |
st.write(welcome_text)
|
228 |
|