NAME
WWW::Vimeo::Simple::Video - Object-oriented Vimeo Simple API interface. Video requests.
VERSION
Version 0.02
SYNOPSIS
This module is a full object-oriented implementation of the Vimeo Simple API. The specifications are available at http://vimeo.com/api/docs/simple-api.
Video request implementation.
use WWW::Vimeo::Simple;
my $foo = WWW::Vimeo::Simple->new();
my $video = $foo->video( $video_id );
$video->info;
print $video->data->{'id'};
METHODS
new( $video_id )
Create a WWW::Vimeo::Simple::Video object
info
Fetch video info for the specified video
data
Return fetched data
VIDEO INFO DATA
title Video title
url URL to the Video Page
id Video ID
description The description of the video
thumbnail_small URL to a small version of the thumbnail
thumbnail_medium URL to a medium version of the thumbnail
thumbnail_large URL to a large version of the thumbnail
user_name The user name of the video's uploader
user_url The URL to the user profile
upload_date The date/time the video was uploaded on
user_portrait_small Small user portrait (30px)
user_portrait_medium Medium user portrait (100px)
user_portrait_large Large user portrait (300px)
stats_number_of_likes # of likes
stats_number_of_views # of views
stats_number_of_comments # of comments
duration Duration of the video in seconds
width Standard definition width of the video
height Standard definition height of the video
tags Comma separated list of tags
AUTHOR
Alessandro Ghedini, <alexbio at cpan.org>
BUGS
Please report any bugs or feature requests to bug-www-vimeo-simple at rt.cpan.org
, or through the web interface at http://rt.cpan.org/NoAuth/ReportBug.html?Queue=WWW-Vimeo-Simple. I will be notified, and then you'll automatically be notified of progress on your bug as I make changes.
SUPPORT
You can find documentation for this module with the perldoc command.
perldoc WWW::Vimeo::Simple::Video
You can also look for information at:
TwitShell homepage
Git repository
RT: CPAN's request tracker
AnnoCPAN: Annotated CPAN documentation
CPAN Ratings
Search CPAN
ACKNOWLEDGEMENTS
LICENSE AND COPYRIGHT
Copyright 2010 Alessandro Ghedini.
This program is free software; you can redistribute it and/or modify it under the terms of either: the GNU General Public License as published by the Free Software Foundation; or the Artistic License.
See http://dev.perl.org/licenses/ for more information.