7 lines
177 B
Bash
7 lines
177 B
Bash
#!/bin/bash
|
|
extractAudio() {
|
|
tmpfile="${fileid}ffmpeg"
|
|
commandline=(${ionice}ffmpeg -v 0 -vn -y)
|
|
commandline+=(-i "$sourcepath/$filename" -map a:0 "$tempdir/$tmpfile".wav)
|
|
}
|