Update app.py
Browse files
app.py
CHANGED
@@ -217,8 +217,10 @@ class Text2Video:
|
|
217 |
with gr.Row():
|
218 |
output = gr.Video(label="Generated Comic Video")
|
219 |
|
220 |
-
# Example
|
221 |
-
example_txt = """
|
|
|
|
|
222 |
gr.Examples([[example_txt]], [input_text])
|
223 |
|
224 |
generate_btn.click(self.generate_video, inputs=[input_text], outputs=[output])
|
|
|
217 |
with gr.Row():
|
218 |
output = gr.Video(label="Generated Comic Video")
|
219 |
|
220 |
+
# Example Story
|
221 |
+
example_txt = """once upon a time there was a village. It was a nice place to live, except for one thing. people did not like to share.,, One day a visitor came to town.
|
222 |
+
'Hello. Does anybody have food to share?' He asked. 'No', said everyone.,,
|
223 |
+
That's okay', said the visitor. 'I will make stone soup for everyone'.Then he took a stone and dropped it into a giant pot,,"""
|
224 |
gr.Examples([[example_txt]], [input_text])
|
225 |
|
226 |
generate_btn.click(self.generate_video, inputs=[input_text], outputs=[output])
|