ruby-mp3info icon indicating copy to clipboard operation
ruby-mp3info copied to clipboard

ruby-mp3info read low-level informations and manipulate tags on mp3 files.

Results 13 ruby-mp3info issues
Sort by recently updated
recently updated
newest added

I'm seeing the following behavior: ``` ruby > mp3info.tag.pictures => [] > mp3info.tag2.PIC => "\\0JPG\\" ```

String#force_encoding and Regexp::FIXEDENCODING don't work with ruby 1.8, and both are used in ID3V2::add_picture. Furthermore, reading an id3v2 tag with an APIC frame fails because iconv blows up on the...

- Added frozen_string_literal magic comment to id3v2.rb and the test file. - Converted strings being mutated to using String.new to allow mutating. - Support moden minitest