Spaces:
Sleeping
Sleeping
Moibe
commited on
Commit
•
3f770cf
1
Parent(s):
af881b4
Remove verbose
Browse files
app.py
CHANGED
@@ -48,11 +48,6 @@ def greet(input1, input2):
|
|
48 |
#Para HuggingFace
|
49 |
print("La plataforma en la que basaremos la división es HuggingFace.")
|
50 |
path_parts = path_video.split("/")
|
51 |
-
print("Esto es parth_paths, de aquí lo puedes obtener?: ", path_parts)
|
52 |
-
time.sleep(1)
|
53 |
-
|
54 |
-
|
55 |
-
print("Imprimiendo path_parts: ", path_parts)
|
56 |
|
57 |
#Aquí obtendremos nom_video
|
58 |
filename = path_parts[-1]
|
@@ -62,7 +57,6 @@ def greet(input1, input2):
|
|
62 |
|
63 |
path_particular = "/".join(path_parts[0:len(path_parts) - 1])
|
64 |
path_general = "/".join(path_parts[0:len(path_parts) - 2])
|
65 |
-
|
66 |
|
67 |
path_general = path_general.replace("\\", "/")
|
68 |
path_particular = path_particular.replace("\\", "/")
|
@@ -76,8 +70,6 @@ def greet(input1, input2):
|
|
76 |
print("Estos son los files que hay:")
|
77 |
print(files)
|
78 |
|
79 |
-
time.sleep(1)
|
80 |
-
|
81 |
ext_imagen = "png"
|
82 |
ext_video = "mp4"
|
83 |
|
@@ -141,8 +133,7 @@ def greet(input1, input2):
|
|
141 |
print("Éste es el path foto: ", path_foto)
|
142 |
path_result = str(path_foto) + "/temp.mp4"
|
143 |
print("Y éste es el path del resultado: ", path_result)
|
144 |
-
|
145 |
-
|
146 |
#Éste es el segmento que crea la galería de imagenes, que por el momento no usaremos por rendimiento.
|
147 |
#Se reintegrará si agregamos interacción de poder borrar cada imagen desde la interfaz web.
|
148 |
|
@@ -180,7 +171,6 @@ def greet(input1, input2):
|
|
180 |
path = pathlib.Path("result.png")
|
181 |
print("Éste es el path para imagen:", path)
|
182 |
return path, images, images
|
183 |
-
|
184 |
print("Listo! Gracias!")
|
185 |
|
186 |
#Así para imagenes
|
|
|
48 |
#Para HuggingFace
|
49 |
print("La plataforma en la que basaremos la división es HuggingFace.")
|
50 |
path_parts = path_video.split("/")
|
|
|
|
|
|
|
|
|
|
|
51 |
|
52 |
#Aquí obtendremos nom_video
|
53 |
filename = path_parts[-1]
|
|
|
57 |
|
58 |
path_particular = "/".join(path_parts[0:len(path_parts) - 1])
|
59 |
path_general = "/".join(path_parts[0:len(path_parts) - 2])
|
|
|
60 |
|
61 |
path_general = path_general.replace("\\", "/")
|
62 |
path_particular = path_particular.replace("\\", "/")
|
|
|
70 |
print("Estos son los files que hay:")
|
71 |
print(files)
|
72 |
|
|
|
|
|
73 |
ext_imagen = "png"
|
74 |
ext_video = "mp4"
|
75 |
|
|
|
133 |
print("Éste es el path foto: ", path_foto)
|
134 |
path_result = str(path_foto) + "/temp.mp4"
|
135 |
print("Y éste es el path del resultado: ", path_result)
|
136 |
+
|
|
|
137 |
#Éste es el segmento que crea la galería de imagenes, que por el momento no usaremos por rendimiento.
|
138 |
#Se reintegrará si agregamos interacción de poder borrar cada imagen desde la interfaz web.
|
139 |
|
|
|
171 |
path = pathlib.Path("result.png")
|
172 |
print("Éste es el path para imagen:", path)
|
173 |
return path, images, images
|
|
|
174 |
print("Listo! Gracias!")
|
175 |
|
176 |
#Así para imagenes
|