Spaces:
Sleeping
Sleeping
File size: 450 Bytes
417e147 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 |
import os
import subprocess
def convert_to_audio(input_file, output_file):
ffmpeg_command = [
"ffmpeg",
"-i", input_file,
"-vn",
"-acodec", "libmp3lame",
"-ab", "96k",
"-ar", "44100",
"-y",
output_file
]
try:
subprocess.run(ffmpeg_command, check=True)
except subprocess.CalledProcessError as e:
print("Error: failed to convert audio")
|