MP4::Info 1.00 released to CPAN
From: Jonathan Harris (noone_at_nowhere.stonehenge.com)
Date: 08/22/04
- Previous message: Cosimo Streppone: "Re: Callerid processing"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
Date: Sat, 21 Aug 2004 23:45:24 GMT
The first release of MP4::Info has been made to CPAN.
http://search.cpan.org/~jhar/MP4-Info/
>>From the README:
======================================================================
NAME
MP4::Info - Fetch info from MPEG-4 files (.mp4, .m4a, .m4p)
======================================================================
DESCRIPTION
The MP4::Info module can be used to extract tag and file information
from MPEG-4 files. It is designed as a drop-in replacement for
MP3::Info.
Note that this module does not allow you to update the information
in MPEG-4 files.
======================================================================
SYNOPSIS
use MP4::Info;
my $file = 'Pearls_Before_Swine.m4a';
my $tag = get_mp4tag($file) or die "No TAG info";
printf "$file is a %s track\n", $tag->{GENRE};
my $info = get_mp4info($file);
printf "$file length is %d:%d\n", $info->{MM}, $info->{SS};
my $mp4 = new MP4::Info $file;
printf "$file length is %s, title is %s\n",
$mp4->time, $mp4->title;
======================================================================
INSTALLATION
See the INSTALL file for details.
======================================================================
AUTHOR
Jonathan Harris <jhar at cpan.org>
======================================================================
SEE ALSO
Latest version is available from:
http://search.cpan.org/~jhar/MP4-Info/
======================================================================
COPYRIGHT and LICENSE
Copyright (c) 2004, Jonathan Harris <jhar at cpan.org>
This program is free software; you can redistribute it and/or modify it
under the the same terms as Perl itself.
- Previous message: Cosimo Streppone: "Re: Callerid processing"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
Relevant Pages
|
|