Suparnpreet commited on
Commit
b72b4d0
·
verified ·
1 Parent(s): 8028fd1

Update audioex.py

Browse files
Files changed (1) hide show
  1. audioex.py +1 -1
audioex.py CHANGED
@@ -14,7 +14,7 @@ def ex():
14
  os.rename(mp4_file_path, "video.mp4")
15
  print("Command started")
16
  try:
17
- result = subprocess.run(["sudo", "apt", "install", "ffmpeg"], capture_output=True, text=True, check=True)
18
  print("FFmpeg installed successfully.")
19
  print("Command Output of ffmpeg:\n", result.stdout)
20
  except subprocess.CalledProcessError as e:
 
14
  os.rename(mp4_file_path, "video.mp4")
15
  print("Command started")
16
  try:
17
+ result = subprocess.run(["sudo", "apt", "install", "ffmpeg"], capture_output=True, text=True, check=True,shell=True)
18
  print("FFmpeg installed successfully.")
19
  print("Command Output of ffmpeg:\n", result.stdout)
20
  except subprocess.CalledProcessError as e: