This application currently plays audio from onine stations.
Basically it has 2 main features: Play: On click of a station name or the play button, the fm station starts playing.
Record : On click of the record link, the recorders starts recording. Clicking it again, stops and replays the recorded audio.
The problem
- The streaming recording is not recording clearly. The current recorder using AVAudioRecorder though records the audio, the sound is noisy. Could it be because the streaming audio uses audioQueue while the recorder used is AVAudioRecorder which also records from microphone.We want to record only the streaming content.
Note: The AVAudioRecorder when used for voice recording is clear, but not good with recording streaming audio content.
For playing streaming audio, i used code from Mr. Matt Gallagher link is here
Can you please suggest a better way to record streaming audio. Is there an existing API like AVAudioRecorder or am I doing something wrong ?