Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
|
@@ -97,7 +97,7 @@ def gradio_interface():
|
|
| 97 |
with gr.Row():
|
| 98 |
with gr.Column():
|
| 99 |
mp3_input = gr.Audio(type="filepath", label="Upload MP3") # MP3 input
|
| 100 |
-
image_input = gr.File(type="
|
| 101 |
generate_button = gr.Button("Generate Video") # Button to generate video
|
| 102 |
|
| 103 |
output_video = gr.Video(label="Generated Video") # Video output display
|
|
|
|
| 97 |
with gr.Row():
|
| 98 |
with gr.Column():
|
| 99 |
mp3_input = gr.Audio(type="filepath", label="Upload MP3") # MP3 input
|
| 100 |
+
image_input = gr.File(type="filepath", file_types=[".jpg", ".png"], label="Upload Images", file_count="multiple") # Images input
|
| 101 |
generate_button = gr.Button("Generate Video") # Button to generate video
|
| 102 |
|
| 103 |
output_video = gr.Video(label="Generated Video") # Video output display
|