Tejaswini Pedapati wrote: > I want to create a music player like itunes or media player using ruby. > Is it possible? How do i go about? I tried to google but could not find > what I wanted. wxRuby (http://wxruby.rubyforge.org) includes the Wx::MediaCtrl which is a GUI component that can play mp3s, mp4s, quicktime etc. http://wxruby.rubyforge.org/doc/mediactrl.html You can then create other GUI controls to list tracks, control playback or whatever. A fairly basic example is included in the wxRuby distribution. http://wxruby.rubyforge.org/svn/trunk/wxruby2/samples/media/mediactrl.rb I would expect that the other large GUI libraries (Gnome, QT) have similar components so you may want to look into them as well. a