Spaces:
Runtime error
Runtime error
Moibe
commited on
Commit
•
f33e101
1
Parent(s):
a196a16
Fix amount of outputs for this version
Browse files
app.py
CHANGED
@@ -130,12 +130,12 @@ def perform(input1, input2, input3):
|
|
130 |
time.sleep(1)
|
131 |
|
132 |
print("Ahora estamos imprimiendo las rutas para ver si apareció una nueva:")
|
133 |
-
|
134 |
-
|
135 |
-
|
136 |
|
137 |
#Creación de la galería:
|
138 |
-
images = []
|
139 |
|
140 |
#path_foto = pathlib.Path(path_particular + "/temp/" + nom_video + "/")
|
141 |
#print("Éste es el path foto: ", path_foto)
|
@@ -179,7 +179,7 @@ def perform(input1, input2, input3):
|
|
179 |
#Para imagen
|
180 |
path = pathlib.Path("result.png")
|
181 |
print("Éste es el path para imagen:", path)
|
182 |
-
return path
|
183 |
print("Listo! Gracias!")
|
184 |
|
185 |
#Así para imagenes
|
|
|
130 |
time.sleep(1)
|
131 |
|
132 |
print("Ahora estamos imprimiendo las rutas para ver si apareció una nueva:")
|
133 |
+
files = os.listdir(path_general)
|
134 |
+
print("Estos son los files que hay:")
|
135 |
+
print(files)
|
136 |
|
137 |
#Creación de la galería:
|
138 |
+
#images = []
|
139 |
|
140 |
#path_foto = pathlib.Path(path_particular + "/temp/" + nom_video + "/")
|
141 |
#print("Éste es el path foto: ", path_foto)
|
|
|
179 |
#Para imagen
|
180 |
path = pathlib.Path("result.png")
|
181 |
print("Éste es el path para imagen:", path)
|
182 |
+
return path
|
183 |
print("Listo! Gracias!")
|
184 |
|
185 |
#Así para imagenes
|