Kalimehtar / binary-class-mp3

MP3 ID3v2 library
MIT License
4 stars 1 forks source link

request #1

Closed Danl2620 closed 7 years ago

Danl2620 commented 10 years ago

Cool project! One request: could you a simple example of using this mp3 binary class to extract various info from an actual mp3 file?

Kalimehtar commented 10 years ago
(define id3 (read-id3 "test.mp3"))

(list (album id3)
      (artist id3)
      (translated-genre id3))

I thought it is obvious from the docs.