making awesome more awesome

This commit is contained in:
Chris Cochrun 2020-12-16 10:13:33 -06:00
parent df158112cb
commit 4cf0bbd46b
8 changed files with 73 additions and 11 deletions

9
scripts/opustomp3 Executable file
View file

@ -0,0 +1,9 @@
#!/usr/bin/env fish
for aud in *.opus
touch $aud.txt
echo $aud >>$aud.txt
set newaud (sed "s/\.opus//g" $aud.txt)
echo $newaud
ffmpeg -i $aud -vn -ar 44100 -ac 2 -b:a 192k $newaud.mp3
end