I cannot convert a mp4 file to wav. I'm working on Laravel. The strange thing is that i can convert the video in another video format like mkv or wmv, but not in audio (mp3 or wav).
Here is my code:
$converted = FFMpeg::fromDisk('news')
->open($video->file_path);
$format = new Wav();
$converted->save($format, '/public/storage/temp/');
This is the error reported by catch (EncodingException $exception):
I cannot convert a mp4 file to wav. I'm working on Laravel. The strange thing is that i can convert the video in another video format like mkv or wmv, but not in audio (mp3 or wav).
Here is my code:
This is the error reported by catch (EncodingException $exception):
Using Laravel sintax:
Here is the error Log: