dotfiles

configuration files for shell, text editor, graphical environment, etc.
git clone git://src.adamsgaard.dk/dotfiles
Log | Files | Refs | README | LICENSE Back to index

commit 8890f20e98829e9517112c6314a293b2f6aa77b6
parent 84b187643499e8d121719374a53c85b995e125ba
Author: Anders Damsgaard <anders@adamsgaard.dk>
Date:   Mon,  2 Sep 2019 21:35:34 +0200

Remove rip script in favor of abcde

Diffstat:
D.local/bin/rip-audio-cd.sh | 28----------------------------
1 file changed, 0 insertions(+), 28 deletions(-)

diff --git a/.local/bin/rip-audio-cd.sh b/.local/bin/rip-audio-cd.sh @@ -1,28 +0,0 @@ -#!/bin/sh -set -e - -# https://wiki.archlinux.org/index.php/Rip_Audio_CDs - -help() { - echo "$0" - echo "rips audio to highest bitrate mp3 and flac from default cd drive" - echo "requires cdrtools, lame and flac" -} - -#drive=/dev/sr0 - -if [ "$1" = "-h" ] || [ "$1" = "--help" ]; then - help - exit 0 -fi - -sudo cdda2wav -vall cddb=0 speed=4 -paranoia paraopts=proof -B -orig_user=$(whoami) -sudo chown $orig_user:$orig_user *.wav - -for f in *.wav; do - lame -V0 "$f" - flac "$f" -done - -rm ./*.wav