I have problems with installing ffmpeg and ffprobe that's why I am looking for ways to avoid them
I have tried to ask neurolinks and even looked in Internet, but it is might to be impossible to install ffmpeg on that os that i have (nix os). So, i have tried to avoid it, but haven't found any solutions. Here is my code:
from pydub import AudioSegment
def convert_audio_to_wav(input_file, output_file):
# Читаем аудиофайл с помощью pydub
x = AudioSegment.from_file(input_file)
x.export(output_file, format='wav')
And it returns an error:
[Errno 2] No such file or directory: 'ffprobe'