9 lines
124 B
Bash
Executable file
9 lines
124 B
Bash
Executable file
#!/bin/bash
|
|
|
|
rm output.$1 -i
|
|
|
|
printf "file '%s'\n" *.$1 > vidList.txt
|
|
|
|
ffmpeg -f concat -i vidList.txt -c copy output.mkv
|
|
|
|
|