Update app.py
Browse files
app.py
CHANGED
@@ -123,13 +123,13 @@ def gradio_interface():
|
|
123 |
show_fullscreen_button=True,
|
124 |
height='400px'
|
125 |
)
|
126 |
-
|
127 |
-
|
128 |
-
gr.Examples(
|
129 |
examples=[["example1.mp4"], ["example2.mp4"], ["example3.mp4"]],
|
130 |
inputs=[video_input]
|
131 |
)
|
132 |
|
|
|
|
|
133 |
generate_btn.click(
|
134 |
fn=process_and_generate_post,
|
135 |
inputs=[video_input, social_media_type],
|
|
|
123 |
show_fullscreen_button=True,
|
124 |
height='400px'
|
125 |
)
|
126 |
+
gr.Examples(
|
|
|
|
|
127 |
examples=[["example1.mp4"], ["example2.mp4"], ["example3.mp4"]],
|
128 |
inputs=[video_input]
|
129 |
)
|
130 |
|
131 |
+
df_output = gr.DataFrame(label="Pixeltable Table")
|
132 |
+
|
133 |
generate_btn.click(
|
134 |
fn=process_and_generate_post,
|
135 |
inputs=[video_input, social_media_type],
|