开发者

Merging MP3 files in Linux Debian using PHP

What's the easiest way to merge the contents of several MP3 files into one using PHP 5.2 on Linux Debian system? I found some scripts that are supposed to do in PHP only, but they seem to be buggy. Perhaps there is a way to accomplish this task using command line programs, that I could install 开发者_StackOverflow中文版on my Linux Debian machine?


check this: http://lists.mplayerhq.hu/pipermail/ffmpeg-user/2009-September/022171.html

first you have to install sox. sudo apt-get install sox.

$ sox first.mp3 -r 44100 -c 2 -s -w first.raw
$ sox second.mp3 -r 44100 -c 2 -s -w second.raw
$ cat first.raw second.raw > concatenated.raw
$ sox -r 44100 -c 2 -s -w concatenated.raw concatenated.mp3

you can execute all these commands from php with exec().


Code taken from this link

cat first_part.mp3 second_part.mp3 third_part.mp3 > newfile.mp3

They say that your file must have the same bit rate.

You can have bit rate using mpg321

mpg321 -t first_part.mp3

Hope it helps.

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜