vote up 1 vote down star

Hello folks,

Currently im working on some sort of music project, so dealing with user mp3 uploads. And the problem is that i cant find id3 library, that will work correctly for all files. I have tried libs: id3-ruby, Mp3Info, but still none of them gives me correct results. For example, most common problems:

  • wrong stream parameters (bitrate and sample rate, sometimes duration)
  • not supported extended tags

So, i decided to add form, so users have to fill optional information like Artist and title, that helped a little, but didnt solve the problem.

Does anyone knows most usable and powerful library for ruby that will work with ID3 correctly?

flag

41% accept rate

3 Answers

vote up 1 vote down check

http://www.hakubi.us/ruby-taglib/

I used this for a project and it worked quite well. Wrapper around taglib, which is very portable.

link|flag
thanks, i`ll try it. does it have any problems ? – Dan Sosedoff Jun 9 at 21:23
I used it against my entire MP3 library and didn't have any problems with it. I didn't do anything with bitrate/sample rate though, so I can't speak to that. – Paul Betts Jun 9 at 22:01
vote up 1 vote down

http://id3lib-ruby.rubyforge.org/

I particularly liked this one, you can also write tags to the file.

link|flag
yes, but sometimes this lib doesnt work correct, so i decided to switch to something better – Dan Sosedoff Jun 10 at 0:23
Looks like it doesn't support utf-8. Otherwise it is neat. – ragu.pattabi Jul 18 at 18:12
vote up 0 vote down

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 the use of upper-case field names, which seems too concerned to preserve the names from the spec. Maybe I should hack in some aliases. Anyway, this sample script scans my music library and counts words in titles:

require 'mp3info'

count = 0
words = Hash.new { |h, k| h[k] = 0 }
Dir.glob("E:/MUSIC/**/*.mp3") do |f|
  count += 1
  Mp3Info.open(f) do |mp3info|
    title = mp3info.tag2.TIT2
    next unless title
    title.split(/\s/).each { |w| words[w.downcase] += 1 }
  end
end
puts "Examined #{count} files"
words.to_a.sort{ |a, b| b[1] <=> a[1] }[0,100].each { |w| puts "#{w[0]}: #{w[1]}" }
link|flag
Thanks for the suggestion. But the interface looks so difficult. I would like something like what id3lib-ruby gives. e.g. tag = ID3Lib::Tag.new('test.mp3') tag.title #test_title tag.title = 'new_title' tag.udpate! #test.mp3's title is updated with new_title – ragu.pattabi Jul 18 at 18:05

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.