Fix multiple file upload (#1512)

* changes

* Update utils.ts

Co-authored-by: Abubakar Abid <abubakar@huggingface.co>
This commit is contained in:
aliabid94 2022-06-09 16:53:41 -07:00 committed by GitHub
parent c6ab13210e
commit f41ebdd616
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 27 additions and 1 deletions

View File

@ -0,0 +1 @@
opencv-python

23
demo/gif_maker/run.py Normal file
View File

@ -0,0 +1,23 @@
import cv2
import gradio as gr
import tempfile
def gif_maker(img_files):
img_array = []
import os
for filename in img_files:
img = cv2.imread(filename.name)
height, width, _ = img.shape
size = (width,height)
img_array.append(img)
output_file = "test.mp4"
out = cv2.VideoWriter(output_file,cv2.VideoWriter_fourcc(*'h264'), 15, size)
for i in range(len(img_array)):
out.write(img_array[i])
out.release()
return output_file
demo = gr.Interface(gif_maker, inputs=gr.File(file_count="multiple"), outputs=gr.Video())
if __name__ == "__main__":
demo.launch()

Binary file not shown.

View File

@ -45,7 +45,9 @@
data: this.result as string
}
: (this.result as string);
if (all_file_data.length === files.length) {
if (
all_file_data.filter((x) => x !== undefined).length === files.length
) {
dispatch(
"load",
file_count == "single" ? all_file_data[0] : all_file_data