Created
May 26, 2015 15:25
-
-
Save anonymous/4b88ebf3f3b5559693aa to your computer and use it in GitHub Desktop.
Przykładzik
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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