Combine multiple raw sound data and save them into one file in actionscript 3.0
i built and application that load multiple sound files play it in a sequence as the user order them but i wond开发者_开发问答er is there a way to save this sequence into one mp3 or wav file
Thank you .
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.
精彩评论