Flash录音,然后上传到服务器
我正在寻找一个 Flash 小部件,允许用户录制音频然后将其发送到服务器。
还有一些类似的问题:
他们主张使用Red5或flash媒体服务器。
是否可以使用用户已有的编解码器在用户客户端上进行本地录制,然后将生成的文件上传到服务器,而不是说在服务器本身上处理并记录流。
谢谢。
I'm looking for a flash widget that allows users to record their audio and then send it to the server.
There are a few similar questions:
Record Audio and Upload as Wav or MP3 to server
They advocate using Red5 or flash media server.
Shouldn't it be possible to record locally on the user's client using the codecs that the user already has and then upload the resulting file to the server, rather than say, process the and record the stream on the server itself.
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果您正在运行 Flash,请根据捕获声音输入文章 Player 10.1 中您可以将麦克风数据保存到
ByteArray
中。捕获麦克风声音data 部分给出了有关如何执行此操作的以下示例:一旦有了
ByteArray
,您当然可以用它做任何您想做的事情。According to the the Capturing Sound Input Article if you are running Flash Player 10.1 you can save the microphone data to a
ByteArray
. The Capturing microphone sound data section gives the following example on how to do it:Once you have the
ByteArray
you can of course do whatever you want with it.获得
ByteArray
后,您可以使用NetStream.appendBytes()
Once you have the
ByteArray
you can pass it in withNetStream.appendBytes()