From 397152efe112e8131e67e489061824391d5a6c06 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Frederik=20=E2=80=9CFreso=E2=80=9D=20S=2E=20Olesen?= Date: Fri, 31 Jul 2015 10:51:12 +0200 Subject: [PATCH] Recognise .m2a file extension. Sometimes used as alternative for `.mp2`. --- picard/formats/id3.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/picard/formats/id3.py b/picard/formats/id3.py index 13796154c..5fdb72386 100644 --- a/picard/formats/id3.py +++ b/picard/formats/id3.py @@ -488,7 +488,7 @@ class ID3File(File): class MP3File(ID3File): """MP3 file.""" - EXTENSIONS = [".mp3", ".mp2"] + EXTENSIONS = [".mp3", ".mp2", ".m2a"] NAME = "MPEG-1 Audio" _IsMP3 = True