I'm currently building a Rails app, where a user can upload an mp3 and listen to it. I'm using paperclip for the data upload, but I'm not sure how I'd arrange the playback of the soundfile, so that it can be used on a mobile phone as well (so no flash).

Thoughts?

link|improve this question

feedback

2 Answers

up vote 2 down vote accepted

The two main cross-browser media playback frameworks are jPlayer and SoundManager.

Both will handle playback of your audio, regardless of device. Both will play the audio using either HTML5 or Flash according to

  • which solution is available
  • which solution you specified as higher priority (e.g. use HTML if available, Flash if not)
link|improve this answer
looks great, especially since they are open-source. Thanks! – ernesto50 Feb 10 at 17:47
1  
no probs.. best of luck with your Rails mobile app! – Lloyd Feb 10 at 18:12
feedback

I'm using JW Player and I'm very happy about it. There is a HTML 5 mode that runs on newer mobile devices like the iPhone.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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