Is there a script for splitting audio files in PHP?

Of course, there are many examples of how you can split a wav file using frequency in order to get the frame rate and avoid split the frame in the middle. Are there any PHP APIs that can use the thrid-party program for this? If there are no recommended APIs, would anyone want to recommend a utility for splitting command-line audio?

+5
source share
3 answers

I find this php man page with a large library for manipulating audio, an example of use with OpenAl here . On codecanyon, I find this script .

+1

I would not use anything other than FFMPEG because of its extensive support for container types and codecs.

http://ffmpeg.org/

You can execute it directly or call the version of the PHP extension.

+1
source

All Articles