aiqtech commited on
Commit
ac9a6d7
1 Parent(s): 1990052

Update demo.py

Browse files
Files changed (1) hide show
  1. demo.py +6 -1
demo.py CHANGED
@@ -207,8 +207,13 @@ def gen_video(input_image, prompt, negative_prompt, diffusion_step, height, widt
207
  if not os.path.exists(args.save_img_path):
208
  os.makedirs(args.save_img_path)
209
 
 
 
 
 
 
210
 
211
- with gr.Blocks() as demo:
212
 
213
 
214
 
 
207
  if not os.path.exists(args.save_img_path):
208
  os.makedirs(args.save_img_path)
209
 
210
+ css = """
211
+ footer {
212
+ visibility: hidden;
213
+ }
214
+ """
215
 
216
+ with gr.Blocks(theme="Nymbo/Nymbo_Theme", css=css) as demo:
217
 
218
 
219