6 lines
176 B
Bash
6 lines
176 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
for file in "$@"; do
|
||
|
cat "$file" | ffmpeg -f "${file##*.}" -re -i pipe: -ar 48000 -ac 1 -filter:a "atempo=1" -c:a pcm_s8 -f s8 pipe: | ncat -U /tmp/mcpcm
|
||
|
done
|