AZLABS commited on
Commit
82bc15e
·
verified ·
1 Parent(s): 49f4a30

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -2
app.py CHANGED
@@ -217,8 +217,10 @@ class Text2Video:
217
  with gr.Row():
218
  output = gr.Video(label="Generated Comic Video")
219
 
220
- # Example text
221
- example_txt = """Once upon a time in a magical forest,, A brave knight discovered a mysterious crystal,, The crystal began to glow with incredible power"""
 
 
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])