1
0
mirror of https://github.com/aquatix/dotfiles.git synced 2025-12-06 22:55:10 +01:00
This commit is contained in:
Michiel Scholten
2014-05-05 20:59:47 +02:00
parent 8bf3aa5a47
commit 6dc77fcac4
6 changed files with 100 additions and 0 deletions

10
bin/wav2mp3 Executable file
View File

@@ -0,0 +1,10 @@
#!/bin/bash
if test -z "$1"
then
echo "Usage: wav2mp3 source.wav destination.mp3"
elif test -z "$2"
then
echo "Missing destination.mp3"
else
lame -m s --cbr --preset insane "$1" "$2"
fi