Skip to content

Instantly share code, notes, and snippets.

Created May 26, 2015 15:25
Show Gist options
  • Save anonymous/4b88ebf3f3b5559693aa to your computer and use it in GitHub Desktop.
Save anonymous/4b88ebf3f3b5559693aa to your computer and use it in GitHub Desktop.
Przykładzik
my $info = Audio::Scan->scan_tags($mp3);
my $tags = $info->{tags};
my $artist = $tags->{TPE1} || 'Artysta nieznany';
my $album = $tags->{TALB} || 'Album nieznany';
my $title = $tags->{TIT2} || 'Tytuł nieznany';
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment