Ubuntu – Ubuntu doesn’t recognize m4a files

file format

I downloaded a few audio files in m4a format from youtube using flashgot plugin in firefox.

The files are showing up as unknown, they don't open on double click. I have to manually right click and select Rhythmbox or VLC everytime to play these files. I also tried adding .m4a after the filename, still doesn't work.

I am using 14.10 on dell n5010

Best Answer

Check your M4A file with this command:

file /path/to/file.m4a

The output should look something like this:

ISO Media, MP4 v2 [ISO 14496-14]

If this is so, then you are missing the codec ubuntu-restricted-extras.

Install the package with this command:

sudo apt-get install ubuntu-restricted-extras

Then try again.

Related Question