Skip to content

Commit f404f35

Browse files
committed
Fix merge-audio script
Signed-off-by: Bensuperpc <bensuperpc@gmail.com>
1 parent 65c4609 commit f404f35

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
#//////////////////////////////////////////////////////////////
2121
PROJECT_NAME := scripts
2222
SHELL := bash
23-
VERSION := 1.3.16
23+
VERSION := 1.3.17
2424
RM := rm
2525

2626
all: install

audio/merge-audio.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ elif (($# == 4)); then
2727
ffmpeg -i "$1" -i "$2" -i "$3" \
2828
-filter_complex '[0:0][1:0][2:0]concat=n=3:v=0:a=1[out]' \
2929
-map '[out]' "$4"
30-
elif (($# == 6)); then
30+
elif (($# == 5)); then
3131
ffmpeg -i "$1" -i "$2" -i "$3" -i "$4" \
3232
-filter_complex '[0:0][1:0][2:0][3:0]concat=n=4:v=0:a=1[out]' \
3333
-map '[out]' "$5"

0 commit comments

Comments
 (0)