init
This commit is contained in:
commit
3556b11c2a
|
@ -0,0 +1,5 @@
|
|||
#!/bin/bash
|
||||
|
||||
for file in "$@"; do
|
||||
ffmpeg -i "$file" -ar 48000 -ac 1 "${file%.*}.dfpwm"
|
||||
done
|
|
@ -0,0 +1,5 @@
|
|||
#!/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
|
Loading…
Reference in New Issue