summaryrefslogtreecommitdiff
path: root/examples/transcode2ogg.sh
diff options
context:
space:
mode:
authorAntti Ajanki <antti.ajanki@iki.fi>2010-08-25 22:51:19 +0300
committerAntti Ajanki <antti.ajanki@iki.fi>2010-08-25 22:51:19 +0300
commit79fdf43317dc87182dc75e23e368558fbb3fce47 (patch)
treebe8c01af91d9bafa770e30ad9029c628f00051bd /examples/transcode2ogg.sh
parentd7dc6d675b32f4d2c0cadf657c49a9828ead2a9f (diff)
downloadvdr-plugin-webvideo-79fdf43317dc87182dc75e23e368558fbb3fce47.tar.gz
vdr-plugin-webvideo-79fdf43317dc87182dc75e23e368558fbb3fce47.tar.bz2
increase ffmpeg niceness, slightly decrease quality
Diffstat (limited to 'examples/transcode2ogg.sh')
-rwxr-xr-xexamples/transcode2ogg.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/transcode2ogg.sh b/examples/transcode2ogg.sh
index 3f25ffc..b37495f 100755
--- a/examples/transcode2ogg.sh
+++ b/examples/transcode2ogg.sh
@@ -19,7 +19,7 @@ srcfile=`basename "$fullsrcname"`
srcbasename=`echo "$srcfile" | sed 's/\.[^.]*$//'`
destname="$videodir/$srcbasename.ogg"
-ffmpeg -i "$fullsrcname" -qscale 8 -vcodec libtheora -acodec libvorbis -ac 2 -y "$destname"
+nice -n 19 ffmpeg -i "$fullsrcname" -qscale 7 -vcodec libtheora -acodec libvorbis -ac 2 -y "$destname"
if [ $? -eq 0 ]; then
rm -f "$fullsrcname"