Skip to content

Instantly share code, notes, and snippets.

@robins35
Created December 4, 2014 00:53
Show Gist options
  • Save robins35/3a3d417617c31808553f to your computer and use it in GitHub Desktop.
Save robins35/3a3d417617c31808553f to your computer and use it in GitHub Desktop.
require 'rubygems'
require 'taglib'
TagLib::MPEG::File.open("sound16.mp3") do |mp3_file|
tag = mp3_file.id3v2_tag
tag.artist = "BLAH"
tag.album = "DERP"
mp3_file.save
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment