5 lines
124 B
Bash
Executable file
5 lines
124 B
Bash
Executable file
#!/bin/bash
|
|
|
|
printf "file '%s'\n" hr/*.wav > hr_concat.txt
|
|
ffmpeg -f concat -safe 0 -i hr_concat.txt -c copy sounds/hr.wav
|
|
|