Spaces:
Runtime error
Runtime error
SIn comments reduct to 131
Browse files
app.py
CHANGED
@@ -103,28 +103,6 @@ def perform(input1, input2, input3):
|
|
103 |
print("Éste es el momento en el que se creo result, revisar...")
|
104 |
time.sleep(1)
|
105 |
|
106 |
-
#Creación de la galería:
|
107 |
-
#images = []
|
108 |
-
|
109 |
-
#path_foto = pathlib.Path(path_particular + "/temp/" + nom_video + "/")
|
110 |
-
#print("Éste es el path foto: ", path_foto)
|
111 |
-
#path_result = str(path_foto) + "/temp.mp4"
|
112 |
-
#print("Y éste es el path del resultado: ", path_result)
|
113 |
-
|
114 |
-
#Éste es el segmento que crea la galería de imagenes, que por el momento no usaremos por rendimiento.
|
115 |
-
#Se reintegrará si agregamos interacción de poder borrar cada imagen desde la interfaz web.
|
116 |
-
|
117 |
-
# for filename in os.listdir(path_foto):
|
118 |
-
# if filename.endswith(".png"):
|
119 |
-
# path = os.path.join(path_foto, filename)
|
120 |
-
# image = Image.open(path)
|
121 |
-
# images.append(image)
|
122 |
-
|
123 |
-
# print("Esto es la lista de imagenes: ", images)
|
124 |
-
|
125 |
-
#nombre_zip = nom_video + ".zip"
|
126 |
-
#print("El nombre del zip será: ", nombre_zip)
|
127 |
-
|
128 |
try:
|
129 |
print("Ésta vez no crearemos archivo zip.")
|
130 |
|
@@ -138,10 +116,6 @@ def perform(input1, input2, input3):
|
|
138 |
path_abs = os.path.abspath(path)
|
139 |
print("Éste es el path para video:", path)
|
140 |
print("Y su ruta absoluta es: ", path_abs)
|
141 |
-
#path_zip = pathlib.Path(nombre_zip)
|
142 |
-
#path_zip_abs = os.path.abspath(path_zip)
|
143 |
-
#print("Y éste es el path para el zip: ", path_zip)
|
144 |
-
#print("Y su ruta absoluta es: ", path_zip_abs)
|
145 |
return path
|
146 |
else:
|
147 |
#Para imagen
|
@@ -154,25 +128,4 @@ def perform(input1, input2, input3):
|
|
154 |
demo = gr.Interface(
|
155 |
fn=perform, inputs=[gr.Image(), gr.Image()], outputs=[gr.Image()]
|
156 |
)
|
157 |
-
|
158 |
-
#Así para imagenes
|
159 |
-
# demo = gr.Interface(
|
160 |
-
# fn=perform, inputs=[gr.Image(), gr.Image(), gr.CheckboxGroup(["face_swapper","face_enhancer"], label="Processor")], outputs=[gr.Image()]
|
161 |
-
# )
|
162 |
-
|
163 |
-
#Así para video y 3 outputs: Video, Galería y Archivo Zip.
|
164 |
-
# demo = gr.Interface(
|
165 |
-
# fn=perform, inputs=[gr.Image(), gr.Video()], outputs=[gr.Video(), gr.Gallery(), gr.File()]
|
166 |
-
# )
|
167 |
-
|
168 |
-
#Así para 2 outputs, video y zip.
|
169 |
-
# demo = gr.Interface(
|
170 |
-
# fn=greet, inputs=[gr.Image(), gr.Video()], outputs=[gr.Video(), gr.File()]
|
171 |
-
# )
|
172 |
-
|
173 |
-
#1 output: video.
|
174 |
-
# demo = gr.Interface(
|
175 |
-
# fn=perform, inputs=[gr.Image(), gr.Video(), gr.CheckboxGroup(["face_swapper","face_enhancer"], label="Processor")], outputs=[gr.Video()]
|
176 |
-
# )
|
177 |
-
|
178 |
demo.launch()
|
|
|
103 |
print("Éste es el momento en el que se creo result, revisar...")
|
104 |
time.sleep(1)
|
105 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
106 |
try:
|
107 |
print("Ésta vez no crearemos archivo zip.")
|
108 |
|
|
|
116 |
path_abs = os.path.abspath(path)
|
117 |
print("Éste es el path para video:", path)
|
118 |
print("Y su ruta absoluta es: ", path_abs)
|
|
|
|
|
|
|
|
|
119 |
return path
|
120 |
else:
|
121 |
#Para imagen
|
|
|
128 |
demo = gr.Interface(
|
129 |
fn=perform, inputs=[gr.Image(), gr.Image()], outputs=[gr.Image()]
|
130 |
)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
131 |
demo.launch()
|