1

I am designing an app that has the ability to play a large number of different mp3 files that are associated with some pdfs. I would rather just stream the mp3 files so I don't have to worry about allowing them to download them onto their device and fill up a bunch of space. Is network streaming possible? Or do I need to have the content local? I have been fiddling with the MPMoviePlayer framework, but I can't get it to work.

It would be very helpful if someone could share some working code.

Thanks!

edc1591
  • 10,146
  • 6
  • 40
  • 63
Lizza
  • 2,769
  • 5
  • 39
  • 72
  • 1
    maybe this helps: http://stackoverflow.com/questions/3275990/iphone-sdk-support-for-playing-mp3-files-over-the-network – Thilo Feb 13 '12 at 02:53

1 Answers1

2

Yes, you can just use an MPMoviePlayerViewController and set the content URL to the URL of the remote media (video or audio).

edc1591
  • 10,146
  • 6
  • 40
  • 63