NAME
RSS::Video::Google - Perl extension for generating RSS XML feeds similar to those produced by Google Video web site.
SYNOPSIS
use RSS::Video::Google;
my $video = RSS::Video::Google->new
$video->new_channel(
items_per_page => ITEMS_PER_PAGE,
start_index => $start_index + 1,
total_results => $total_results,
);
$video->channel->new_item(
description => $item->description,
title => $item->title,
new_media => {
new_content => {
url => $item->content_url,
duration => $item->duration,
},
new_thumbnail => {
url => $item->thumbnail_url,
},
},
);
print $video->xml;
DESCRIPTION
Produces XML RSS feeds similar to those return by google. http://video.google.com/videofeed?xxx
You might need something like this if you are writting software to interact with the Google video server and need to test with your own data sets.
AUTHOR
Jeff B Anderson, jeff@pvrcanada.com
SEE ALSO
XML::Simple