Quantcast
Channel: Ruby mp3 Id3 parsing - Stack Overflow
Browsing all 6 articles
Browse latest View live

Answer by sondra.kinsey for Ruby mp3 Id3 parsing

As of 2019, the best answers are:Krists Ozols' ID3TagMoumar's ruby-mp3infotaglib-rubyAll other libraries are long-since unmaintained.Krists Ozols' ID3Tag distinguishing characteristicsread onlyCan read...

View Article



Answer by Franklin Yu for Ruby mp3 Id3 parsing

id3tag is another option. Example:require "id3tag"mp3_file = File.open('/path/to/your/favorite_song.mp3', "rb")tag = ID3Tag.read(mp3_file)puts "#{tag.artist} - #{tag.title}"

View Article

Answer by Mike Woodhouse for Ruby mp3 Id3 parsing

I've used this:http://ruby-mp3info.rubyforge.org/or gem install ruby-mp3info (add the regulation sudo for Mac or *nix)There's some rdoc documentation, which is nice. On the downside, I don't much like...

View Article

Answer by Garrett for Ruby mp3 Id3 parsing

http://id3lib-ruby.rubyforge.org/I particularly liked this one, you can also write tags to the file.

View Article

Answer by Ana Betts for Ruby mp3 Id3 parsing

http://www.hakubi.us/ruby-taglib/I used this for a project and it worked quite well. Wrapper around taglib, which is very portable.

View Article


Ruby mp3 Id3 parsing

Currently I'm working on a music project, dealing with user mp3 uploads. The problem is that I can't find an id3 library that will work correctly for all files. I have tried id3-ruby and Mp3Info libs...

View Article
Browsing all 6 articles
Browse latest View live




Latest Images