I am working on a application where I am playing a live radio from a url. I want to record the radio and save it to local file system. Can someone help me for that?
Thanks Pankaj
|
I am working on a application where I am playing a live radio from a url. I want to record the radio and save it to local file system. Can someone help me for that? Thanks Pankaj |
||||
|
|
|
This might help: iPhone Coding: Recording Audio You need to use
Start recording by initializing. Once you get this far, it's just a matter of bookkeeping to get your recorder started. Here's the relevant code. Allocate and initiate the recorder instance, activate it and assign it the
Stop the recording with "stop". When you're ready to finish recording, just send a stop message to your recorder and deactivate it. The file has already saved automatically to disk. If you want, you can query the number of bytes written before deactivating by sending a
|
|||
|
|