HongcanGuo commited on
Commit
db7089d
·
verified ·
1 Parent(s): 06ab368

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +11 -0
app.py CHANGED
@@ -149,5 +149,16 @@ interface = gr.Interface(
149
  theme="soft"
150
  )
151
 
 
 
 
 
 
 
 
 
 
 
 
152
  # 启动 Gradio 应用
153
  interface.launch()
 
149
  theme="soft"
150
  )
151
 
152
+
153
+ # interface = gr.Interface(
154
+ # fn=lambda img: generate_video(img),
155
+ # inputs=gr.Image(type="pil"),
156
+ # outputs=gr.Video(),
157
+ # title="Stable Video Diffusion",
158
+ # description="Upload an image to generate a video",
159
+ # theme="soft"
160
+ # )
161
+
162
+
163
  # 启动 Gradio 应用
164
  interface.launch()