|
Hi,
When using the 0.51 version of Audio:M4P I get this error:
Artist is Elvis Presley
Can't locate object method "GetSCInfoUserKey" via package "Audio::M4P::Decrypt" at /usr/local/share
+/perl/5.8.8/Audio/M4P/Decrypt.pm line 64.
I am running this script, mostly copied from the documentation:
#!/usr/bin/perl
use Audio::M4P::QuickTime;
my $mp4file = "sm.m4p";
my $qt = new Audio::M4P::QuickTime(file => $mp4file);
my $tags = $qt->GetMetaInfo;
print "Artist is $tags->{ARTIST}\n" if $tags->{ARTIST};
use Audio::M4P::Decrypt;
my $outfile = 'mydecodedfile';
my $deDRMS = new Audio::M4P::Decrypt;
$deDRMS->DeDRMS($mp4file, $outfile);
The module is right, the artist of sm.m4p is Elvis, but what's wrong with the Decrypt module? I must admit I cannot find the method GetSCInfoUserKey in Audio::M4P::Decrypt either...
Please forgive me if this is a dumb question, I am just a Java developer in real life ;-)
Grtz!
|