Spaces:
Sleeping
Sleeping
Moibe
commited on
Commit
•
78f1c7e
1
Parent(s):
08e132f
Hotfix path @ HugginFace
Browse files
app.py
CHANGED
@@ -15,7 +15,10 @@ def greet(input1, input2):
|
|
15 |
print(input2)
|
16 |
|
17 |
path_video = input2
|
18 |
-
|
|
|
|
|
|
|
19 |
print("Imprimiendo path_parts: ", path_parts)
|
20 |
path_bueno = "\\".join(path_parts[0:len(path_parts) - 2])
|
21 |
|
|
|
15 |
print(input2)
|
16 |
|
17 |
path_video = input2
|
18 |
+
#Para local.
|
19 |
+
#path_parts = path_video.split("\\")
|
20 |
+
#Para HuggingFace
|
21 |
+
path_parts = path_video.split("//")
|
22 |
print("Imprimiendo path_parts: ", path_parts)
|
23 |
path_bueno = "\\".join(path_parts[0:len(path_parts) - 2])
|
24 |
|