1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25
|
ruby-taglib2 is a Ruby interface to TagLib, the audio meta-data library.
It allows Ruby programs to read and write meta-data of all the audio formats supported by TagLib.
It was written because ruby-taglib suffers severals bugs with ruby 1.9.
* Installation (using rake)
rake
rake install
* Compatibility with ruby-taglib
rake COMPAT=true
rake install
* Tests
rake test [COMPAT=true]
* Documentation
rake rdoc
* Tests (after compiling)
ruby tests/tests.rb
* Installation (by hand)
ruby extconf.rb [--compat]
make
make install
|