views:

172

answers:

3

I have found many GPL licensed libraries for reading information from mp3s in Python. Are there any non GPL libraries?

+1  A: 

There's Stagger (new BSD license), pure Python 3.

Ville Laurikari
+2  A: 

pytagger is using a BSD license.

A: 

You could use GStreamer (LGPL), but that might be a bit overkill if you only want the metadata and no playback.

keis