The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

MP3::PodcastFetch::Feed::Item -- Structure for recording Podcast episode information

SYNOPSIS

 use MP3::PodcastFetch::Feed::Item
 my $item = MP3::PodcastFetch::Feed::Item->new(title=>'my podcast',
                                               description =>'my very own podcast'
                                               );
 my $title = $item->title;
 my $description = $item->description;
 my $url         = $item->url;

DESCRIPTION

This is a utility class for MP3::PodcastFetch that defines accessors for various attributes of a Podcast episode, including its title, description, author and URL.

Accessors

The following accessors are defined. They can be used to get and/or fetch the current value:

 title         Episode title
 description   Episode description
 url           Podcast file's downloaded URL (sound file URL)
 link          Podcast episode's web page (HTML file URL)
 guid          Episode unique ID
 pubDate       Episode publication date (in original format)
 author        Episode author
 duration      Episode's duration
 timestamp     Episode's modification date, in seconds

SEE ALSO

podcast_fetch.pl, MP3::PodcastFetch, MP3::PodcastFetch::Feed, MP3::PodcastFetch::Feed::Channel, MP3::PodcastFetch::Feed::Item, MP3::PodcastFetch::TagManager,

AUTHOR

Lincoln Stein <lstein@cshl.org>.

Copyright (c) 2006 Cold Spring Harbor Laboratory

This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself. See DISCLAIMER.txt for disclaimers of warranty.