Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

i have a good experince with playing audio in general on iphone but i would like to have a way to play .RM files on iphone app .. i've tried the normal approach put it didn't give me any sound at all ..

so any help??

share|improve this question

2 Answers

up vote 2 down vote accepted

You'll need to convert these RealMedia files into a more modern format before you can play them.

share|improve this answer
so do you know a good converter software ?? – Mohamed Emad Hegab Jul 7 '11 at 22:16
Plenty of those online. ffmpeg is a good command-line tool, if you're into that. – duskwuff Jul 7 '11 at 22:18

You could learn the file format and write your own decoder and obtain the pcm data, or whatever format you want the samples in, and then feed that to either AudioQueues or AudioUnits.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.