Skip to content

Instantly share code, notes, and snippets.

@kevinfoerster
Forked from ffaerber/gist:1181940
Created August 30, 2011 20:42
Show Gist options
  • Save kevinfoerster/1181965 to your computer and use it in GitHub Desktop.
Save kevinfoerster/1181965 to your computer and use it in GitHub Desktop.
# coding: utf-8
require "rubygems"
require "mp3info"
filename = "Haendel--Messiah - Evry valley--.mp3"
content = Mp3Info.open(filename).tag.artist
Iconv.iconv('iso-8859-1', 'utf-8', content)
puts content
puts "Händel"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment