Hello,
This online radio application currently plays audio from onine stations.
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
-----------------------
1. The streaming recording is not recording clearly.
The current recorder though records the audio, but the sound quality is poor.
It could 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 ?