i want to use sound library for project in php.
neeed functionality like
- high performance
- sound optimisation
- open source
- mixing sound
is that any best PECL suit ?
any github or sourceforge project?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
You won’t be able to do audio processing correctly with PHP alone, you should take a look at the following:
http://sox.sourceforge.net/
http://ffmpeg.org/
http://lame.sourceforge.net/
You can execute the above apps through PHP using something like
shell_exec();A better bet is to have a
cronjob running that does batch processing.