This is not really an answer, rather an observation: At one end of the spectrum of possible ways to do this: record on the client machine with whatever local app there is, and save (upload) the recorded file (i.e., a podcast). This could potentially get big, so there are other issues you may need to consider here.
At the other end of the specttruc of ways to do this: something like what Google's Nexuss-One android phone does to "verbally" write email: since the local/host processor does not have enough MIPS / memory to achieve such a task, voice is relayed in a stream to a remote server, which then sends back the voice-to-text result. Having a streaming, buffering, server process do this is an entire design exercise. In between would be some kind of client app that handles short (i.e. voice mail message length) recordings, and sends it to the server to store. Ultimately, you will know / bound / define what the needs of your application are, and then design an appropriately functioning solution. Your needs will imply amount of work, method, difficulty. Someone may come up with canned examples - and perhaps you can find a Java or Flash implementation of a client recorder, and simply directly upload a file, or use ajax to send / save to a web2py application. If that is the kind of use-case you have in mind, most of the work and consideration is in the client. Regards, - Yarko On Mar 18, 8:05 am, aure <[email protected]> wrote: > Hi everyone, > > I would like to let some users record voice samples (read bits of > text) from a web2py application. > > I imagine the user just clicks on a button to start the recording > process, reads the text, clicks to stop the recording. Listens to it. > And saves it if they are happy with it. Otherwise do the whole thing > again and again until they are satisfied. > > My question is: can someone point me to such a recording application > that could be used in a web2py application? > > Thanks in advance. > > Aurelien -- You received this message because you are subscribed to the Google Groups "web2py-users" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/web2py?hl=en.

