Suparnpreet commited on
Commit
00f831f
·
verified ·
1 Parent(s): ecc6d87

Update audioex.py

Browse files
Files changed (1) hide show
  1. audioex.py +2 -1
audioex.py CHANGED
@@ -4,8 +4,9 @@ import shutil
4
 
5
  def ex():
6
  print("Started ex")
7
- video_directory = os.getcwd()
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)