Spaces:
Runtime error
Runtime error
Update audioex.py
Browse files- audioex.py +2 -1
audioex.py
CHANGED
@@ -4,8 +4,9 @@ import shutil
|
|
4 |
|
5 |
def ex():
|
6 |
print("Started ex")
|
7 |
-
video_directory =
|
8 |
video_files = [f for f in os.listdir(video_directory) if f.endswith(".mp4")]
|
|
|
9 |
for mp4_file in video_files:
|
10 |
# Full path to the mp4 file
|
11 |
mp4_file_path = os.path.join(video_directory, mp4_file)
|
|
|
4 |
|
5 |
def ex():
|
6 |
print("Started ex")
|
7 |
+
video_directory = "video"
|
8 |
video_files = [f for f in os.listdir(video_directory) if f.endswith(".mp4")]
|
9 |
+
print(f"Founded Video Files is : {video_files}")
|
10 |
for mp4_file in video_files:
|
11 |
# Full path to the mp4 file
|
12 |
mp4_file_path = os.path.join(video_directory, mp4_file)
|