Method 1a: Standard install on UNIX with make

Unzip the module as follows:

tar -zxvf MP4-Info-1.xx.tar.gz

The module can be installed using the standard Perl procedure:

        perl Makefile.PL
        make
        make test
        make install    # You may need to be root
        make clean      # or make realclean

Method 1b: Standard install on Windows with nmake

Use Winzip to Unzip the module.

Start a Command Prompt and cd to the directory whete you unzipped the module.

You will need an 'nmake' program. This can be obtained from:

ftp://ftp.microsoft.com/Softlib/MSLFILES/nmake15.exe

The module can be installed using the standard Perl procedure:

        perl Makefile.PL
        nmake
        nmake test
        nmake install   # You may need to be an Administrator
        nmake clean     # or nmake realclean

Method 2: Using CPAN.pm (UNIX or Windows)

If you have CPAN.pm configured you can install the module as follows:

perl -MCPAN -e "install 'MP4::Info'"