Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is there a script available to split audio file in PHP?

Tags:

php

audio

There certainly seems to be plenty of examples of how one might split a wav file using the frequency to get the frame-rate and avoid splitting a frame in the middle. Are there any APIs available in PHP that might utilize a thrid-party program to accomplish this? If there are no recommended APIs would anyone care to recommend a command line audio splitting utility ?

like image 202
rciiipo Avatar asked Oct 11 '22 01:10

rciiipo


2 Answers

I have written a class, called Audero Wav Extractor, that do what you need. I hope this will help also future users. This is the link to the project: https://github.com/AurelioDeRosa/Audero-Wav-Extractor

like image 194
Aurelio De Rosa Avatar answered Oct 14 '22 02:10

Aurelio De Rosa


I find this page of php manual with a lot a library for audio manipulation, example of usage with OpenAl here. On codecanyon I find this script.

like image 40
Awea Avatar answered Oct 14 '22 00:10

Awea