marlenezw commited on
Commit
5a65d97
1 Parent(s): d920c34

Adding title and description

Browse files
Files changed (1) hide show
  1. app.py +2 -0
app.py CHANGED
@@ -30,6 +30,8 @@ demo = gr.Interface(
30
  fn=generateVideo,
31
  inputs=[gr.Image(shape=(256, 256)), gr.Audio(), ],
32
  outputs= gr.Video().style(height=256, width=256),
 
 
33
 
34
  )
35
 
 
30
  fn=generateVideo,
31
  inputs=[gr.Image(shape=(256, 256)), gr.Audio(), ],
32
  outputs= gr.Video().style(height=256, width=256),
33
+ title='Audio Driven Animation',
34
+ description='Input and image and audio file and watch them come to life! Please note, at the moment images must be 254X254 and audio files must be .wav format. Enjoy!'
35
 
36
  )
37