Mercurial > mplayer.hg
view TOOLS/install-divx5.sh @ 16463:bde7ac94b138
Adds the script psnr-video.sh to calculate the PSNR between two existing video files.
Script by Matthias Wieser < mwieser AH gmx POUM de >
Original thread:
Date: Aug 25, 2005 1:54 PM
Subject: [MEncoder-users] [Script] PSNR between two video files
author | gpoirier |
---|---|
date | Mon, 12 Sep 2005 16:56:19 +0000 |
parents | 34cf1cf85ee3 |
children | 45477f25175e |
line wrap: on
line source
#!/bin/sh # Author: thuglife, mennucc1 # set -e site=http://download.divx.com/divx/ filename=divx4linux501-20020418.tgz if [ `whoami` != root ]; then echo "You must be a root to start this script. Login As root first!" exit 1 else case "$1" in install) mkdir /var/tmp/mplayer$$ cd /var/tmp/mplayer$$ wget $site/$filename tar xzf $filename cd divx4linux-20020418/ sh install.sh cd .. rm -rf $filename rm -rf divx4linux-20020418/ echo "Installed Succesfully!" rmdir /var/tmp/mplayer$$ ;; uninstall) rm -rf /usr/local/lib/libdivx{encore,decore}.so{,.0} echo "Uninstalled Succesfully!" ;; *) echo "Usage: {install|uninstall}" exit 1 ;; esac exit 0 fi