diff options
author | Antti Ajanki <antti.ajanki@iki.fi> | 2010-08-25 22:51:19 +0300 |
---|---|---|
committer | Antti Ajanki <antti.ajanki@iki.fi> | 2010-08-25 22:51:19 +0300 |
commit | 79fdf43317dc87182dc75e23e368558fbb3fce47 (patch) | |
tree | be8c01af91d9bafa770e30ad9029c628f00051bd /examples/transcode2ogg.sh | |
parent | d7dc6d675b32f4d2c0cadf657c49a9828ead2a9f (diff) | |
download | vdr-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-x | examples/transcode2ogg.sh | 2 |
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" |