Spaces:
Sleeping
Sleeping
Moibe
commited on
Commit
•
767439d
1
Parent(s):
5a2242d
Fix path result
Browse files
app.py
CHANGED
@@ -140,7 +140,7 @@ def greet(input1, input2):
|
|
140 |
#nom_video = "whitebeauty"
|
141 |
path_foto = pathlib.Path(path_particular + "/temp/" + nom_video + "/")
|
142 |
print("Éste es el path foto: ", path_foto)
|
143 |
-
path_result = path_foto + "temp.mp4"
|
144 |
print("Y éste es el path del resultado: ", path_result)
|
145 |
|
146 |
|
|
|
140 |
#nom_video = "whitebeauty"
|
141 |
path_foto = pathlib.Path(path_particular + "/temp/" + nom_video + "/")
|
142 |
print("Éste es el path foto: ", path_foto)
|
143 |
+
path_result = str(path_foto) + "temp.mp4"
|
144 |
print("Y éste es el path del resultado: ", path_result)
|
145 |
|
146 |
|