diff options
author | Daniel Meyerholt <dxm523@googlemail.com> | 2011-02-06 16:09:44 +0100 |
---|---|---|
committer | Daniel Meyerholt <dxm523@googlemail.com> | 2011-02-06 16:09:44 +0100 |
commit | 7ced9f4f634a6123371076fd1fb9ac1d8ec9c0c8 (patch) | |
tree | 65683e6e8202e5baac117f1cbd7309f675f5725b | |
parent | daa5a0e31767213131cf742cce4f00017106c4f6 (diff) | |
download | vdr-plugin-vdrrip-7ced9f4f634a6123371076fd1fb9ac1d8ec9c0c8.tar.gz vdr-plugin-vdrrip-7ced9f4f634a6123371076fd1fb9ac1d8ec9c0c8.tar.bz2 |
confpathes patch by Thomas Günther <@toms-cafe.de>: locate tools in /usr/bin/ rather than /usr/local/bin
-rwxr-xr-x | scripts/queuehandler.sh.conf | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/scripts/queuehandler.sh.conf b/scripts/queuehandler.sh.conf index 37fed90..5b01813 100755 --- a/scripts/queuehandler.sh.conf +++ b/scripts/queuehandler.sh.conf @@ -33,8 +33,8 @@ # this pathes are used for the encoding of vdr-recordings & dvd's. # they _must_ point to an unpatched mencoder & mplayer - mencoder="/usr/local/bin/mencoder" - mplayer="/usr/local/bin/mplayer" + mencoder="/usr/bin/mencoder" + mplayer="/usr/bin/mplayer" # this pathes are only used for encoding a vdr-recording with # selected ac3-stream. @@ -52,11 +52,11 @@ # optional tools (only needed for ogm/matroska-container) - vdrsync="/usr/local/bin/vdrsync.pl" - ffmpeg="/usr/local/bin/ffmpeg" - ogmmerge="/usr/local/bin/ogmmerge" - ogmsplit="/usr/local/bin/ogmsplit" - mkvmerge="/usr/local/bin/mkvmerge" + vdrsync="/usr/bin/vdrsync.pl" + ffmpeg="/usr/bin/ffmpeg" + ogmmerge="/usr/bin/ogmmerge" + ogmsplit="/usr/bin/ogmsplit" + mkvmerge="/usr/bin/mkvmerge" @@ -64,7 +64,7 @@ # from the queuehandler on your tv. # You have to specify only $svdrpsend or $netcat. # $netcat is only recommend, if perl isn't installed. - svdrpsend="/usr/local/bin/svdrpsend.pl" + svdrpsend="/usr/lib/vdr/svdrpsend.pl" #netcat="" vdrhostname="localhost" |