1
0
mirror of https://github.com/aquatix/dotfiles.git synced 2025-12-06 20:35:11 +01:00
Files
dotfiles/bin/wav2mp3
Michiel Scholten 6dc77fcac4 Import
2014-05-05 20:59:47 +02:00

11 lines
189 B
Bash
Executable File

#!/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