Better defaults.

This commit is contained in:
Tessa Nordgren 2016-07-02 13:10:28 -07:00
parent 85a875d419
commit dd3b72a5a8

4
dve
View File

@ -4,14 +4,14 @@ set -e
# defaults for all configuration values # defaults for all configuration values
ENC="ffmpeg" ENC="ffmpeg"
CRF=26 CRF=24
OPTS="-c:v libx265 -pix_fmt yuv420p10le -preset fast -x265-params crf=${CRF}:aq-mode=3 -c:a libvorbis -aq 5" OPTS="-c:v libx265 -pix_fmt yuv420p10le -preset fast -x265-params crf=${CRF}:aq-mode=3 -c:a libvorbis -aq 5"
# This is to split out and copy attachment streams, like subtitles # This is to split out and copy attachment streams, like subtitles
# and fonts, so they only get copied once. # and fonts, so they only get copied once.
DATA_OPTS="-map 0 -c:s copy -c:t copy -c:d copy -vn -an" DATA_OPTS="-map 0 -c:s copy -c:t copy -c:d copy -vn -an"
SUFFIX="_new.mkv" SUFFIX="_new.mkv"
SERVERS=":" SERVERS=":"
LEN=60 LEN=300
OUTDIR=`mktemp -d` OUTDIR=`mktemp -d`
VERBOSE="error" VERBOSE="error"
# override defaults in a ~/.dverc file # override defaults in a ~/.dverc file