Skip to content

Instantly share code, notes, and snippets.

@Spagett1
Spagett1 / convert.sh
Last active December 30, 2022 11:51
converts files between .wav and the .txt format used by the pinebuds
#!/bin/sh
txt_to_wav() {
xxd -r -p $args > out.raw
ffmpeg -f sbc -ac 1 -i ./out.raw output.wav
rm ./out.raw
}
wav_to_txt() {
ffmpeg -i $args -f sbc -ac 16000 -ac 1 -map_metadata -1 out.raw
xxd -i ./out.raw | head -n -2 \