生成一个x秒沉默音频文件与byteArray和Adobe Air



我想使用ByteArrayAdobe Air中生成声音。声音应该是x秒的沉默。我找到了我用来生成字节的代码:

private function encode(data : ByteArray) : ByteArray
{
    var channels : uint = 2;
    var bits : uint = 16;
    var rate : uint = 44100;
    var bytes : ByteArray = new ByteArray();
    bytes.endian = Endian.LITTLE_ENDIAN;
    bytes.writeUTFBytes('RIFF');
    bytes.writeInt(uint(data.length + 44));
    bytes.writeUTFBytes('WAVE');
    bytes.writeUTFBytes('fmt ');
    bytes.writeInt(uint(16));
    bytes.writeShort(uint(1));
    bytes.writeShort(channels);
    bytes.writeInt(rate);
    bytes.writeInt(uint(rate * channels * (bits / 8)));
    bytes.writeShort(uint(channels * (bits / 8)));
    bytes.writeShort(bits);
    bytes.writeUTFBytes('data');
    bytes.writeInt(data.length);
    bytes.writeBytes(data);
    bytes.position = 0;
    return bytes;
}

但是当我使用filerreference保存文件并将其导入flash文件时,我得到一个错误消息,说读取文件有问题

查看这个开源库。

http://code.google.com/p/micrecorder/downloads/list

它从麦克风捕获声音并将其保存为wav文件

相关内容

  • 没有找到相关文章

最新更新