在 ActionScript 3.0 中合并多个原始声音数据并将它们保存到一个文件中
我构建了一个加载多个声音文件的应用程序,作为用户按顺序播放它 订购它们,但我想知道有没有一种方法可以将此序列保存到一个 mp3 或 wav 文件中,
谢谢。
i built and application that load multiple sound files play it in a sequence as the user
order them but i wonder is there a way to save this sequence into one mp3 or wav file
Thank you .
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
你不能只用闪光灯来做到这一点。如果您的东西是 AIR 应用程序,您可以使用 C++ 应用程序或类似的东西通过 NativeProcess 或 LocalConnection 组合声音。
对于 Web 应用程序,最简单的方法是将声音保存到媒体服务器(FMS、RED5),并同时播放流,或者您可以使用 FFMPEG 来合并文件。
You can't do it just with flash. If your stuff is an AIR application, you can combine the sounds using a C++ app or somthing like this via NativeProcess or LocalConnection.
In the case of a web app, the most simple way to save the sounds to a media server (FMS, RED5), and play back the streams at the same time, or you can use FFMPEG to combine the files.