google advanced video search
Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 3747
Mortgage Video And Search Tool 1
The world of mortgages and real estate can be extremely confusing to the newcomer. The mortgage industry is a lot more competitive than it used to be... more>> <<less
Download (1113KB)
Added: 2009-04-12 License: Freeware Price: Free
194 downloads
Google Search 0.1
Google Search is a desktop tool with you can search anything you want on the Google engine direct from your desktop. more>>
Google Search is a desktop tool with you can search anything you want on the Google engine direct from your desktop.
Installation:
To compile use qmake then make
Example:
bash: qmake mio.pro
bash: make
bash: ./mio
It uses firefox only. I will include konqueror in the next update.
Assign it a global shorcut.
<<lessInstallation:
To compile use qmake then make
Example:
bash: qmake mio.pro
bash: make
bash: ./mio
It uses firefox only. I will include konqueror in the next update.
Assign it a global shorcut.
Download (0.010MB)
Added: 2005-12-09 License: GPL (GNU General Public License) Price:
1471 downloads
Google Video Downloader 1.1
Google Video Downloader is a Firefox extension that adds a button in the status bar. more>>
Google Video Downloader is a Firefox extension that adds a button in the status bar. You can download the source .flv or .avi file directly in two clicks
If You:
- Would like to download files from other videohostings;
- Have DownThemAll od FlashGot;
- Would like to permanently choose preferred Google Video format.
<<lessIf You:
- Would like to download files from other videohostings;
- Have DownThemAll od FlashGot;
- Would like to permanently choose preferred Google Video format.
Download (0.003MB)
Added: 2007-06-28 License: MPL (Mozilla Public License) Price:
826 downloads
WWW::Google::Video 0.3
WWW::Google::Video is a fetch the Google Video Information. more>>
WWW::Google::Video is a fetch the Google Video Information.
SYNOPSIS
use WWW::Google::Video;
$foo=new WWW::Google::Video;
$foo->fetch(http://video.google.com/videoplay?docid=1808273720725631796);
# The Google Video Page URL, such as http://video.google.com/videoplay?docid=blahblahblah
print $foo->{url},"n"; # Google Video FLV Original File URL !!
print $foo->{length},"n"; # Video Length Information
print $foo->{name},"n"; # Video Name Information
foreach(@{ $foo->{pic} }){ # By using Reference to an Array
print $_,"n"; # To show the preview pictures.
}
The WWW::Google::Video is a class implementing a interface for fetch the Google Video Information.
To use it, you should create WWW::Google::Video object and use its method fetch(), to fetch the information of Video.
It uses LWP::Simple for making request to Google.
<<lessSYNOPSIS
use WWW::Google::Video;
$foo=new WWW::Google::Video;
$foo->fetch(http://video.google.com/videoplay?docid=1808273720725631796);
# The Google Video Page URL, such as http://video.google.com/videoplay?docid=blahblahblah
print $foo->{url},"n"; # Google Video FLV Original File URL !!
print $foo->{length},"n"; # Video Length Information
print $foo->{name},"n"; # Video Name Information
foreach(@{ $foo->{pic} }){ # By using Reference to an Array
print $_,"n"; # To show the preview pictures.
}
The WWW::Google::Video is a class implementing a interface for fetch the Google Video Information.
To use it, you should create WWW::Google::Video object and use its method fetch(), to fetch the information of Video.
It uses LWP::Simple for making request to Google.
Download (0.008MB)
Added: 2006-07-20 License: GPL (GNU General Public License) Price:
1196 downloads
Archive Search 0.9.2
Archive Search is an extension which displays an archived versions of the webpage. more>>
Archive Search is an extension which displays an archived versions of the webpage.
Displays an archived versions of the webpage.
First click: Internet Archive
Second click: Google cache
Third click: Yahoo
Fourth click: MSN
<<lessDisplays an archived versions of the webpage.
First click: Internet Archive
Second click: Google cache
Third click: Yahoo
Fourth click: MSN
Download (0.005MB)
Added: 2007-04-12 License: MPL (Mozilla Public License) Price:
931 downloads
Google::Adwords::CreditCard 0.6.0
Google::Adwords::CreditCard is a Google Adwords CreditCard object. more>>
Google::Adwords::CreditCard is a Google Adwords CreditCard object.
This object should be used with the AccountService API calls.
METHODS
Mutators (read/write)
- cardNumber
- cardType
- cardVerificationNumber
- expirationMonth
- expirationYear
- issueNumber
- startMonth
- startYear
- status
- taxNumber
<<lessThis object should be used with the AccountService API calls.
METHODS
Mutators (read/write)
- cardNumber
- cardType
- cardVerificationNumber
- expirationMonth
- expirationYear
- issueNumber
- startMonth
- startYear
- status
- taxNumber
Download (0.041MB)
Added: 2006-11-23 License: Perl Artistic License Price:
1065 downloads
Net::Google::Search 1.0.1
Net::Google::Search is a simple OOP-ish interface to the Google SOAP API for searching. more>>
Net::Google::Search is a simple OOP-ish interface to the Google SOAP API for searching.
SYNOPSIS
use Net::Google::Search;
my $search = Net::Google::Search->new(%args);
$search->query(qw(aaron cope));
map { print $_->title()."n"; } @{$search->results()};
# or
foreach my $r (@{$search->response()}) {
print "Search time :".$r->searchTime()."n";
# returns an array ref of Result objects
# the same as the $search->results() method
map { print $_->URL()."n"; } @{$r->resultElement()}
}
Provides a simple OOP-ish interface to the Google SOAP API for searching.
This package is used by Net::Google.
<<lessSYNOPSIS
use Net::Google::Search;
my $search = Net::Google::Search->new(%args);
$search->query(qw(aaron cope));
map { print $_->title()."n"; } @{$search->results()};
# or
foreach my $r (@{$search->response()}) {
print "Search time :".$r->searchTime()."n";
# returns an array ref of Result objects
# the same as the $search->results() method
map { print $_->URL()."n"; } @{$r->resultElement()}
}
Provides a simple OOP-ish interface to the Google SOAP API for searching.
This package is used by Net::Google.
Download (0.017MB)
Added: 2006-11-20 License: Perl Artistic License Price:
1069 downloads
WebService::GoogleHack::Search 0.15
WebService::GoogleHack::Search is a Perlmodule used to query Google. more>>
WebService::GoogleHack::Search is a Perl module used to query Google.
SYNOPSIS
use WebService::GoogleHack::Search;
#create an object of type search
my $search = GoogleHack::Search->new();
#Query Google.
$search->searchPhrase($searchString);
#The results variable will now contain the results of your query.
#Printing the searchtime
print "n Search Time".$search->{searchTime};
#Printing the snippet element 0
print "nnSnippet".$search->{snippet}->[0];
This module provides a simple interface to the Google API. It is used by the GoogleHack module.
<<lessSYNOPSIS
use WebService::GoogleHack::Search;
#create an object of type search
my $search = GoogleHack::Search->new();
#Query Google.
$search->searchPhrase($searchString);
#The results variable will now contain the results of your query.
#Printing the searchtime
print "n Search Time".$search->{searchTime};
#Printing the snippet element 0
print "nnSnippet".$search->{snippet}->[0];
This module provides a simple interface to the Google API. It is used by the GoogleHack module.
Download (0.088MB)
Added: 2006-11-29 License: Perl Artistic License Price:
1059 downloads
Google Gears Beta
Google Gears project is an open source Firefox extension that enables web applications to provide offline functionality. more>>
Google Gears project is an open source Firefox extension that enables web applications to provide offline functionality using following JavaScript APIs:
- Store and serve application resources locally
- Store data locally in a fully-searchable relational database
- Run asynchronous Javascript to improve application responsiveness
<<less- Store and serve application resources locally
- Store data locally in a fully-searchable relational database
- Run asynchronous Javascript to improve application responsiveness
Download (0.42MB)
Added: 2007-06-01 License: Freeware Price:
1030 downloads
Google Reader Watcher 0.0.8
Google Reader Watcher is a Firefox extension that will check your Google Reader for unread feeds. more>>
Google Reader Watcher is a Firefox extension that will check your Google Reader for unread feeds and if you have, the plugin will display them on your browsers statusbar.
<<less Download (0.025MB)
Added: 2007-07-26 License: GPL (GNU General Public License) Price:
821 downloads
Advanced tic-tac-toe 2.1
Advanced tic-tac-toe project is an advanced version of tic-tac-toe. more>>
Advanced tic-tac-toe project is an advanced version of tic-tac-toe.
It is a version of the popular game with different rules for placing and winning the game.
Enhancements:
- Removed all unused vars
<<lessIt is a version of the popular game with different rules for placing and winning the game.
Enhancements:
- Removed all unused vars
Download (0.002MB)
Added: 2006-11-21 License: GPL (GNU General Public License) Price:
1070 downloads
WWW::Google::Images::SearchResult 0.6.4
WWW::Google::Images::SearchResult is a Perl module that can search result object for WWW::Google::Images. more>>
WWW::Google::Images::SearchResult is a Perl module that can search result object for WWW::Google::Images.
Other methods
$result->save_all(%args)
Save all the image files and web pages from result.
Optional parameters:
content => 1
Content is saved by calling $image->save_content() for each result.
context => 1
Context is saved by calling $image->save_context() for each result.
summary => 1
A summary is created, that links saved files to original URLs.
file => $file
Passed to $image->save_content() and $image->save_context().
dir => $directory
Passed to $image->save_content() and $image->save_context().
base => $base
Passed to $image->save_content() and $image->save_context().
Additionaly, if optional parameter file or base is given, an index number is automatically appended.
<<lessOther methods
$result->save_all(%args)
Save all the image files and web pages from result.
Optional parameters:
content => 1
Content is saved by calling $image->save_content() for each result.
context => 1
Context is saved by calling $image->save_context() for each result.
summary => 1
A summary is created, that links saved files to original URLs.
file => $file
Passed to $image->save_content() and $image->save_context().
dir => $directory
Passed to $image->save_content() and $image->save_context().
base => $base
Passed to $image->save_content() and $image->save_context().
Additionaly, if optional parameter file or base is given, an index number is automatically appended.
Download (0.007MB)
Added: 2006-11-27 License: Perl Artistic License Price:
1063 downloads
Google Calendar Notifier 2.5.3
Google Calendar Notifier brings you a powerful and extremely useful extension which provides robust notifications and display of your Google Calendars for today, as well as showing any upcoming all day events for tomorrow. more>> <<less
Added: 2008-07-16 License: MPL Price: FREE
1 downloads
Google Desktop for Linux 5.0
Search your hard drive for e-mail, files, and your Web and IM histories. more>> Instantly find your e-mail, files, media, Web history, and chats. By making your computer searchable, Google Desktop Search puts your information easily within your reach. It frees you from having to manually organize your files, e-mail, and Web pages youve viewed.
Google 5 revamps the sidebar interface and many gadgets, while adding a new dialog for adding gadgets. Also new are previews of search results and security alerts for suspicious Web links.<<less
Download (7.24MB)
Added: 2009-04-02 License: Freeware Price: Free
204 downloads
Google::Adwords::AccountInfo 0.6.0
Google::Adwords::AccountInfo is a Google Adwords AccountInfo object. more>>
Google::Adwords::AccountInfo is a Google Adwords AccountInfo object.
SYNOPSIS
use Google::Adwords::AccountInfo;
my $accountinfo = Google::Adwords::AccountInfo->new
->currencyCode(EUR)
->descriptiveName(My Account);
This object should be used with the AccountService API calls
<<lessSYNOPSIS
use Google::Adwords::AccountInfo;
my $accountinfo = Google::Adwords::AccountInfo->new
->currencyCode(EUR)
->descriptiveName(My Account);
This object should be used with the AccountService API calls
Download (0.041MB)
Added: 2006-11-23 License: Perl Artistic License Price:
1066 downloads
Secleted [ 0 ] software to compare
Copyright Notice:
Software piracy is theft, Using crack, password, serial numbers, registration codes, key generators is illegal and prevent future software development. The above google advanced video search search only lists software in full, demo and trial versions for free download. Download links are directly from our mirror sites or publisher sites, torrent files or links from rapidshare.com, yousendit.com or megaupload.com are not allowed