Jon-Eric
Jon-Eric

Reputation: 17285

Extract AAC audio properties using Python?

What's the easiest Python library to use to extract properties from an AAC audio file (.m4a)?

Specifically, I'd like to extract the following properties:

Upvotes: 1

Views: 2045

Answers (2)

user1279811
user1279811

Reputation: 11

Try using the command exiftool. Of course, if you're using linux. This command shows all the properties of audio files, video and pictures. Exiftool installed, simply use the command:

exiftoll your_file_name.extension

eg exiftoll music.mp3

Upvotes: 1

ars
ars

Reputation: 123538

Try the AudioFile class in Audio Tools.

Upvotes: 1

Related Questions