NAME
WWW::Rediff::iShare - get ishare.rediff.com audio and video stream URLs and download file
SYNOPSIS
## Stream types are
## for audio : music
## for video : video
use WWW::Rediff::iShare;
my $is = WWW::Rediff::iShare->new();
my @streamdata = $is->get_stream_url('movie song name','stream-type');
if(scaler(@streamdata))
{
for my $a (@$streamdata)
{
print "Title : ",$a->{'title'},"\n";
print "Url : ",$a->{'stream_url'},"\n";
print "file_id : ",$a->{'file_id},"\n";
print "\n";
}
}
## to download flv file
$is->download('file_id','stream-type');
DESCRIPTION
Get Audio and Video Streaming url form Rediff iShare and download your favourite music. I am really wondering how i wrote this module, actually i used to listen songs from rediff iShare, some of the songs i like very much, but no way to download. Now cheers.... i wrote this module. you can search your favourite music or video my @streamdata = $is->get_stream_url('movie song name','stream-type'); then get your favourite music id and download it $self->download('music-id','stream-type');
SEE ALSO
WWW::Live365, WWW::YouTube::VideoURI
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.