audio tweaks etc
* pass --no-audio through from pack-set to pack-vid * don't reserve bitrate for audio if there's no audio track
This commit is contained in:
parent
f380334fe2
commit
97a21bd75f
2 changed files with 20 additions and 7 deletions
9
pack-set
9
pack-set
|
|
@ -1,10 +1,17 @@
|
|||
#!/bin/sh
|
||||
|
||||
OPTS=""
|
||||
if [ "$1" == "--no-audio" ]
|
||||
then
|
||||
OPTS="--no-audio"
|
||||
shift
|
||||
fi
|
||||
|
||||
for INFILE in "$@"
|
||||
do
|
||||
echo "$INFILE"
|
||||
|
||||
COMMON="--exposure=-2.5 --peak=141 --fps=60000/1001"
|
||||
COMMON="$OPTS --exposure=-2.5 --peak=141 --fps=60000/1001"
|
||||
SPEED_SMALL="veryslow"
|
||||
SPEED_LARGE="medium"
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue