NAME
WWW::Rediff::iShare - get ishare.rediff.com audio and video stream URL and download it to your system
SYNOPSIS
## Stream types are
## for audio : audio
## for video : video
use WWW::Rediff::iShare;
my $iShare = WWW::Rediff::iShare->new();
my $stream_data = $iShare->get_stream_url('Jaane Tu Mera','audio');
if($stream_data)
{
for my $a (@{$stream_data})
{
print "Title : ", $a->{'title'},"\n";
print "Url : ", $a->{'stream_url'},"\n";
print "file_id : ", $a->{'file_id'},"\n\n";
}
}
## to download flv file
$iShare->download('file_id','stream-type');
DESCRIPTION
Get Audio and Video Streaming url form Rediff iShare and download it. Downloaded file is of extension .flv
SEE ALSO
WWW::Live365, WWW::YouTube::VideoURI, FLV::ToMP3
AUTHOR
Rakesh Kumar Shardiwal, <shardiwal at cpan.org>
BUGS
Please report any bugs or feature requests to bug-www-rediff-ishare at rt.cpan.org
, or through the web interface at http://rt.cpan.org/NoAuth/ReportBug.html?Queue=WWW-Rediff-iShare. 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::Rediff::iShare
You can also look for information at:
RT: CPAN's request tracker
AnnoCPAN: Annotated CPAN documentation
CPAN Ratings
Search CPAN
ACKNOWLEDGEMENTS
COPYRIGHT & LICENSE
Copyright 2008 Rakesh Kumar Shardiwal, all rights reserved.
This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.