Skip to content

Instantly share code, notes, and snippets.

@teenst
Created September 16, 2014 14:53
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save teenst/6279f5c368ae7b435f1d to your computer and use it in GitHub Desktop.
Save teenst/6279f5c368ae7b435f1d to your computer and use it in GitHub Desktop.
#!/usr/bin/env ruby
## Copyright (c) 2014, teenst
## License : The BSD 3-Clause License
## <http://opensource.org/licenses/BSD-3-Clause>
Dir.glob("*mp3") do |f|
name = f.gsub(".mp3","")
puts `id3tool --set-title=#{name} --set-artist="DUO\ 3.0" #{f}`
end
@teenst
Copy link
Author

teenst commented Sep 16, 2014

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment