9/8/2010 3:23:04 PM
Title:
Save audio to server when using microphone.get method
I have a flash recording app that lets the user record audio with their computer's mic then it will open a save dialog and ask the user where to save the wav file locally.
I need to be able to save the file to a location on my server instead.
After searching everywhere I have seen things saying I need to use a server side language like php in order to save directly to the server.
Anyone have any experience saving to a Database or straight to a file on a server with flash?
Thanks in advance for any help!!!
9/8/2010 7:32:31 PM
flash is a client side application , so its technically impossible for flash to save file on server without server side help. A flash application running on client does not have any connection with server, Its not just flash no other browser based applications (like applet, html,javascritp) can do such things because of security reasons. Flash can only pass data to some server side language like php, asp, java etc as bytestream and that bytestream is received by a server using server side language and saved as file.