Update webgui.py
Browse files
webgui.py
CHANGED
@@ -218,8 +218,7 @@ def process_video(uploaded_img, uploaded_audio, width, height, length, seed, fac
|
|
218 |
|
219 |
return final_output_path
|
220 |
|
221 |
-
with gr.Blocks() as demo:
|
222 |
-
gr.Markdown('# Mimic FACE')
|
223 |
|
224 |
with gr.Row():
|
225 |
with gr.Column():
|
@@ -304,7 +303,7 @@ args = parser.parse_args()
|
|
304 |
|
305 |
if __name__ == '__main__':
|
306 |
# demo.launch(
|
307 |
-
demo.queue(max_size=
|
308 |
server_name=args.server_name,
|
309 |
server_port=args.server_port,
|
310 |
show_api=True # Enable API documentation
|
|
|
218 |
|
219 |
return final_output_path
|
220 |
|
221 |
+
with gr.Blocks(theme="Nymbo/Nymbo_Theme") as demo:
|
|
|
222 |
|
223 |
with gr.Row():
|
224 |
with gr.Column():
|
|
|
303 |
|
304 |
if __name__ == '__main__':
|
305 |
# demo.launch(
|
306 |
+
demo.queue(max_size=12).launch(
|
307 |
server_name=args.server_name,
|
308 |
server_port=args.server_port,
|
309 |
show_api=True # Enable API documentation
|