• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

lib/Audio/H23-Oct-2014-2,4441,464

t/H03-May-2022-362265

ChangesH A D23-Oct-20146.4 KiB197143

LICENSEH A D20-Feb-200820.1 KiB384309

MANIFESTH A D23-Oct-2014571 3231

META.jsonH A D23-Oct-20141.2 KiB4847

META.ymlH A D23-Oct-2014672 2928

Makefile.PLH A D12-Jul-2008574 1813

READMEH A D11-Mar-2006878 4225

TodoH A D05-Jun-2007376 135

README

1NAME
2
3Audio::M4P -- M4P / MP4 / m4a Quicktime audio and video tools, including DRMS removal tools
4
5DESCRIPTION
6
7Slice, dice, deconstruct, markup, and decrypt MP4 / M4P / M4V / M4A (Apple Quicktime) audio and video
8
9SYNOPSIS
10
11
12use Audio::M4P::QuickTime;
13
14my $mp4file = "file.m4p";
15my $qt = new Audio::M4P::QuickTime(file => $mp4file);
16my $tags = $qt->GetMetaInfo;
17print "Artist is $tags->{ARTIST}\n" if $tags->{ARTIST};
18
19my ($track, $count) = $qt->tracks;
20my $new_track_number = 3;
21my $total_tracks_on_CD = 17;
22$qt->tracks($new_track_number, $total_tracks_on_CD);
23
24use Audio::M4P::Decrypt;
25
26my $mp4file = 'myfile';
27my $outfile = 'mydecodedfile';
28my $decrypt = new Audio::M4P::Decrypt;
29$decrypt->DecryptFile($mp4file, $outfile);
30
31
32
33To install the module...
34
35perl Makefile.PL
36make
37make test
38make install
39
40
41If you are on a windows box you should use 'nmake' rather than 'make'.
42