summaryrefslogtreecommitdiff
path: root/dotfiles/system/.local/bin/opus2mp3
diff options
context:
space:
mode:
Diffstat (limited to 'dotfiles/system/.local/bin/opus2mp3')
-rwxr-xr-xdotfiles/system/.local/bin/opus2mp33
1 files changed, 0 insertions, 3 deletions
diff --git a/dotfiles/system/.local/bin/opus2mp3 b/dotfiles/system/.local/bin/opus2mp3
deleted file mode 100755
index eef37ed..0000000
--- a/dotfiles/system/.local/bin/opus2mp3
+++ /dev/null
@@ -1,3 +0,0 @@
-#!/bin/sh
-# Craig Jennings Monday, April 25, 2022
-for f in *.opus; do ffmpeg -i "$f" -codec:v copy -codec:a libmp3lame -q:a 2 "${f%.opus}.mp3"; done