3

I have installed 12.04 in Windows 7 as dual boot. Now I am not able to play any music from online music sites like smashhitsusa.com or saavn.com or songspk.pk.

Whenever I click on any song, it just stuck in the same condition, neither showing any error like plugin required or missing nor playing the song.

Could you please help me to solve the issue?

Bishnu
  • 31

1 Answers1

0

If you haven't installed the ubuntu-restricted-extras Install ubuntu-restricted-extras package, try that.

Of the three sites you've listed, the first was unable to deliver any page when I loaded it; it appears to be down now. The second site worked fine on my Ubuntu system. The third had so many pop-ups, I was discouraged from persisting to figure out how one is supposed to play music on it.

But my success with the second site suggests you should be able to get them working, without too much trouble. ubuntu-restricted-extras will give you most of what may be needed.

Another thing that may help is to enable the Medibuntu repository (as mentioned in one of the answers to the above linked question) and install codecs and related packages from that.

To do that, run these commands:

sudo -E wget --output-document=/etc/apt/sources.list.d/medibuntu.list http://www.medibuntu.org/sources.list.d/$(lsb_release -cs).list && sudo apt-get --quiet update && sudo apt-get --yes --quiet --allow-unauthenticated install medibuntu-keyring && sudo apt-get --quiet update
sudo apt-get install app-install-data-medibuntu apport-hooks-medibuntu
sudo apt-get install aacgain aacplusenc alsa-firmware libavcodec-extra-53 libavdevice-extra-53 libavfilter-extra-2 libavformat-extra-53 libavutil-extra-51 libdvdcss2 libdvdcss-dev libpostproc-extra-52 libswscale-extra-2 mplayer-dbg mplayer-doc mplayer-gui mplayer non-free-codecs rmconverter w32codecs

If you're running the 64-bit version of Ubuntu, replace w32codecs (at the end of the third command) with w64codecs. The third command may warn you:

The following packages will be REMOVED:
  libavformat53 libpostproc52 libswscale2 mplayer2

That's okay.

The third command above installs what I consider to be the most useful packages provided in the Medibuntu repository (minus the ices package which is currently not installable on many machines because it depends on packages that are not available). Please note that it is possible that there are legal restrictions applicable to you that could render your installing or using of some or all software provided in the Medibuntu repository unlawful. Please make sure to read this page to understand the nature of the software Medibuntu provides, and take note of its disclaimer, which applies to this answer also:

It is your legal responsibility to make sure that the software you are installing can be legally used in your country and for your intended purpose.

Sources:

Eliah Kagan
  • 117,780
  • Thank you very much for your response. But I have checked ubuntu-restricted-extras are installed already. Still not able to play the music as mentioned. It shows everything but not able to play. It stocks on the same scene. – Bishnu Aug 20 '12 at 16:10
  • @itsbishnu I'd suggest installing some software from the Medibuntu repository, to see if that helps. I've edited my answer to provide details. If you try that and it doesn't work (or you're unable to install the software), or you decide you do not wish to install software from the Medibuntu repository, please comment to let me know, and I'll try to explore other possibilities that may help you. – Eliah Kagan Aug 21 '12 at 05:35