Browse Source

[fish] Add function for encoding wav as ogg

Colin Powell 5 năm trước cách đây
mục cha
commit
b85bc46c91
1 tập tin đã thay đổi với 3 bổ sung0 xóa
  1. 3 0
      fish/.config/fish/functions/encode.fish

+ 3 - 0
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