Leggere tag MP3 in Ruby con ID3Tag

Mattepuffo's logo
Leggere tag MP3 in Ruby con ID3Tag

Leggere tag MP3 in Ruby con ID3Tag

Piccolo snippet in Ruby per leggere i tag dei file MP3.

Per farlo possiamo usare la libreria ID3Tag.

Possiamo installarla tramite gem:

gem install id3tag

Detto ciò ecco un piccolo esempio:

require "id3tag"

file = '/home/utente/Documenti/canzone.mp3'
mp3_file = File.open(file, "rb")
tag = ID3Tag.read(mp3_file)
puts file
puts tag.artist
puts tag.title
puts tag.album
puts tag.year
puts tag.track_nr
puts tag.genre

Enjoy!


Condividi

Commentami!