Skip to content
Snippets Groups Projects
Commit fef69dd8 authored by Gerhard Gonter's avatar Gerhard Gonter :speech_balloon:
Browse files

added script to work with MP3::Info

parent da660076
No related branches found
No related tags found
No related merge requests found
#!/usr/bin/perl
use strict;
use MP3::Info;
use Data::Dumper;
$Data::Dumper::Indent= 1;
my @PAR;
while (my $arg= shift (@ARGV))
{
if ($arg =~ /^-/)
{
&usage;
}
else
{
push (@PAR, $arg);
}
}
foreach my $file (@PAR)
{
my $tag= get_mp3tag ($file);
print "file: [$file]\n";
print "tag: ", Dumper ($tag);
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment