Selaa lähdekoodia

[fish] Add function for encoding wav as ogg

Colin Powell 5 vuotta sitten
vanhempi
commit
b85bc46c91
1 muutettua tiedostoa jossa 3 lisäystä ja 0 poistoa
  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