0

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 .

Khaled Garbaya
  • 1,479
  • 16
  • 20

1 Answers1

0

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.

Tamas Gronas
  • 573
  • 3
  • 8
  • i can save the file to wav format using php if i get the bytearrays merged correctelly – Khaled Garbaya Jun 08 '11 at 15:27
  • Merging is the main problem. You can save that suff in lot of different ways, that shouldn't be a problem. I know, you can do this using FFMPEG, but not with a flash client. – Tamas Gronas Jun 08 '11 at 16:32