3

I have about 20 files of music in the format .aa3. Which Linux-compatible program reads that format?

Eric Carvalho
  • 54,385
Nick Bailuc
  • 3,325
  • 12
  • 45
  • 68

1 Answers1

5

First enable restricted, multiverse and partner repository. Click here to see a bunch of helpful questions about how to do this. By default restricted repository is enabled.

Open a terminal and execute this command to install necessary codecs to play .aa3 format files.

sudo apt-get update
sudo apt-get install gstreamer0.10-plugins-bad gstreamer0.10-plugins-ugly gstreamer0.10-ffmpeg gstreamer0.10-fluendo-mp3 

Then you can open and play files with standard player. Such as Rhythmbox or totem.

OP says the method doesn't work.

If this method doesn't work, I guess the files are DRM protected. In simple words, DRM protection is used to prevent piracy of Digital contents (there are other usages also) such as Music, Videos etc. You need a key to decrypt or read the digital content which is only supplied to you by the Vendor.

Check these Links to know more about DRM protection:

Anwar
  • 76,649