From b85bc46c9152dce6e9e90968574796be2f24413d Mon Sep 17 00:00:00 2001 From: Colin Powell Date: Tue, 14 Apr 2020 09:25:39 -0400 Subject: [PATCH] [fish] Add function for encoding wav as ogg --- fish/.config/fish/functions/encode.fish | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 fish/.config/fish/functions/encode.fish diff --git a/fish/.config/fish/functions/encode.fish b/fish/.config/fish/functions/encode.fish new file mode 100644 index 0000000..7cf175c --- /dev/null +++ b/fish/.config/fish/functions/encode.fish @@ -0,0 +1,3 @@ +function encode + ffmpeg -i $argv -vn -ar 44100 -ac 2 -b:a 192k output.ogg +end