fffiloni commited on
Commit
6b8d85f
1 Parent(s): cdedaa2

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -2
app.py CHANGED
@@ -124,7 +124,8 @@ with gr.Blocks(css=css) as demo:
124
  image_in = gr.Image(
125
  label = "Source Image",
126
  source = "upload",
127
- type = "filepath"
 
128
  )
129
 
130
  submit_btn = gr.Button(
@@ -132,7 +133,8 @@ with gr.Blocks(css=css) as demo:
132
  )
133
 
134
  video_out = gr.Video(
135
- label = "Video Result"
 
136
  )
137
 
138
  with gr.Group(elem_id="share-btn-container", visible=False) as share_group:
 
124
  image_in = gr.Image(
125
  label = "Source Image",
126
  source = "upload",
127
+ type = "filepath",
128
+ elem_id = "image-in"
129
  )
130
 
131
  submit_btn = gr.Button(
 
133
  )
134
 
135
  video_out = gr.Video(
136
+ label = "Video Result",
137
+ elem_id = "video-out"
138
  )
139
 
140
  with gr.Group(elem_id="share-btn-container", visible=False) as share_group: