Mercurial > mplayer.hg
view TOOLS/install-divx5.sh @ 18917:d9a75b26da6c
Add a new video pts tracking mode, enabled by option -correct-pts.
This mode has the following differences:
- Video timing is correct for streams with B frames, at least with some
demuxers.
- Video filters can modify frame timestamps and insert new frames, and
removing frames is handled better than before.
- Some things are known to break, it's not usable as the default yet.
Things should work as before when the -correct-pts option is not used.
author | uau |
---|---|
date | Thu, 06 Jul 2006 06:58:17 +0000 |
parents | 45477f25175e |
children |
line wrap: on
line source
#!/bin/sh # Author: thuglife, mennucc1 # set -e site=http://download.divx.com/divx/ packagename=divx4linux501-20020418 filename=$packagename.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 $packagename/ sh install.sh cd .. rm -rf $filename rm -rf $packagename/ 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