1
0

music: Add encoding script

I probably don't need to downsample all of my audio, but whatever.
This commit is contained in:
Ryan Fox 2024-06-02 16:36:36 -07:00
parent f42745f6c1
commit 09ae6a513c
Signed by: flewkey
GPG Key ID: 94F56ADFD848851E

2
encode.sh Executable file
View File

@ -0,0 +1,2 @@
#!/bin/sh
exec ffmpeg -i "${1}" -vn -ar 44100 -ac 2 -b:a 128k "${1}.mp3"