Is it possible to convert to a WAV file to AIFF in PHP, and viceversa?

3.2k Views Asked by At

I know it's possible to covert from AIFF and WAV to MP3, but in my project I need to have available all three formats (AIFF, WAV and MP3) from AIFF and WAV inputs. Is it possible?

2

There are 2 best solutions below

1
On BEST ANSWER
<?php
    exec("ffmpeg -i file.wav -f aiff -ab 128000 -ar 44100 file.aif");
?>
4
On

Not elegant, but you can use underlying system tools to do it via shell_exec()