Spaces:
Runtime error
Runtime error
Moibe
commited on
Commit
•
a196a16
1
Parent(s):
163c468
Second try clean vid to pic
Browse files
app.py
CHANGED
@@ -71,14 +71,14 @@ def perform(input1, input2, input3):
|
|
71 |
#print("Esto es filename alias nom_video: ", nom_video)
|
72 |
#path_particular = "/".join(path_parts[0:len(path_parts) - 1])
|
73 |
#path_general = "/".join(path_parts[0:len(path_parts) - 2])
|
74 |
-
path_general = path_general.replace("\\", "/")
|
75 |
-
path_particular = path_particular.replace("\\", "/")
|
76 |
-
print("Path general: ", path_general)
|
77 |
-
print("Path general: ", path_particular)
|
78 |
-
path = pathlib.Path("result.mp4")
|
79 |
-
files = os.listdir(path_general)
|
80 |
-
print("Estos son los files que hay:")
|
81 |
-
print(files)
|
82 |
ext_imagen = "png"
|
83 |
ext_video = "mp4"
|
84 |
|
@@ -130,18 +130,17 @@ def perform(input1, input2, input3):
|
|
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 |
-
#
|
141 |
-
|
142 |
-
|
143 |
-
|
144 |
-
print("Y éste es el path del resultado: ", path_result)
|
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.
|
|
|
71 |
#print("Esto es filename alias nom_video: ", nom_video)
|
72 |
#path_particular = "/".join(path_parts[0:len(path_parts) - 1])
|
73 |
#path_general = "/".join(path_parts[0:len(path_parts) - 2])
|
74 |
+
#path_general = path_general.replace("\\", "/")
|
75 |
+
#path_particular = path_particular.replace("\\", "/")
|
76 |
+
#print("Path general: ", path_general)
|
77 |
+
#print("Path general: ", path_particular)
|
78 |
+
#path = pathlib.Path("result.mp4")
|
79 |
+
#files = os.listdir(path_general)
|
80 |
+
#print("Estos son los files que hay:")
|
81 |
+
#print(files)
|
82 |
ext_imagen = "png"
|
83 |
ext_video = "mp4"
|
84 |
|
|
|
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)
|
142 |
+
#path_result = str(path_foto) + "/temp.mp4"
|
143 |
+
#print("Y éste es el path del resultado: ", path_result)
|
|
|
144 |
|
145 |
#Éste es el segmento que crea la galería de imagenes, que por el momento no usaremos por rendimiento.
|
146 |
#Se reintegrará si agregamos interacción de poder borrar cada imagen desde la interfaz web.
|