I'm currently developing iOS app for streaming audio for radio station, through mp3 file format. I'm using AVPlayer and it is working like a charm! In that stream (in mp3 file) server is also sending text data, more specifically title of song and name of the artist.
My questions are 1. how to get that text data from continuous stream? in other words: how to approach problem of cutting mp3 stream into slices and get text data? 2. which objects should I use? NSMutableData for example? 3. which solution is better: slicing stream and getting that text or another service on server which return xml/json with title and artist of a current song played on radio?