mirror of
https://github.com/aquatix/dotfiles.git
synced 2025-12-06 22:55:10 +01:00
11 lines
189 B
Bash
Executable File
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
|