录制声音并保存为mp3文件
是否可以用麦克风录制(5秒)语音并将其保存为mp3文件而不向服务器发送数据?我想用 FileReference 保存文件(前段时间我做了一个保存位图的实验,它起作用了)。
Is it possible to record (5 seconds) a voice with the microphone and save it as a mp3 file WITHOUT sending data to the server? I would like to save the file with FileReference (some times ago I did an experiment saving a bitmap and it worked).
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用 MicRecorder 类来录制声音,并使用 as3lameencoder 用于将录制的字节流编码为mp3。
You can use MicRecorder class for recording the sound, and as3lameencoder for encoding the recorded byte stream into mp3.