7 回复
currentfile = './files/' + clips.shift() + '.mp3';
stream = fs.createReadStream(currentfile);
把排好序的数组,逐个shift出来,读入到流
stream.pipe(dhh, {end: false});
stream.on("end", function() {
console.log(currentfile + ' appended');
main();
});
当读完时,再去执行main,再次shift,读入到流。一直到
if (!clips.length) {
dhh.end("Done");
return;
}
明白了?
首先得把mp3的header去掉,然后要转成相同格式的mp3格式
可以看看lame 这个上是音频格式转换的 id3 headr http://www.360doc.com/content/12/0523/14/6979751_213126182.shtml