mirror of
https://github.com/aquatix/dotfiles.git
synced 2025-12-06 22:55:10 +01:00
Import
This commit is contained in:
10
bin/wav2mp3
Executable file
10
bin/wav2mp3
Executable 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
|
||||
Reference in New Issue
Block a user