1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58
|
README for clive
----------------
clive is a command line utility for extracting videos from Youtube and other
video-sharing websites. It was written to bypass the Adobe Flash requirement
to view the hosted videos.
http://clive.googlecode.com/
http://code.google.com/p/clive/issues/
http://code.google.com/p/clive/wiki/FAQ
Prerequisites
-------------
See Makefile.PL file.
Optional modules
----------------
* BerkeleyDB
- If not installed, clive cache features will be disabled
* Term::ReadKey
- If not installed, clive will not resize progressbar to
match terminal width
Installation
------------
Be sure to remove any previous versions of clive first.
INSTALL_BASE can be passed into Makefile.PL to change where clive will
be installed. For example:
perl Makefile.PL INSTALL_BASE=/usr/local
perl Makefile.PL
make
make test # optional
make install
See also (for Makefile.PL options etc.):
http://search.cpan.org/perldoc?ExtUtils::MakeMaker
Notes
-----
* "make test" will use ~/.cliverc settings. You can set NO_INTERNET
environment variable to skip the host tests.
* If you want to try clive without installing it first:
cd lib; ../bin/clive URL
|