Last active
December 31, 2015 03:09
-
-
Save danhigham/7925803 to your computer and use it in GitHub Desktop.
Bash script to sit in a loop and continuously rip vobs from a DVD. When it's done a disk it sends a notification email, ejects the draw and waits for another disc.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env bash | |
SUBJECT="DVD is done ripping" | |
EMAIL="[email protected]" | |
EMAILMESSAGE="./emailmessage.txt" | |
while [ 1 ] | |
do | |
echo "Waiting for new disk.." | |
while [[ `udisks --show-info /dev/sr0 | grep -c "has media: *1"` == "0" ]] | |
do | |
blah="blah" | |
done | |
label=`udisks --show-info /dev/sr0 | grep -Po "label:\s+[^\s]+" | grep -Po "[^\s]+$"` | |
echo "Your DVD '$label' has finished ripping "> $EMAILMESSAGE | |
mount /dev/sr0 /home/pi/dvdrom | |
vobcopy -l -o /home/pi/storage/dvd-rips/ | |
/usr/bin/mail -s "$SUBJECT" "$EMAIL" < $EMAILMESSAGE | |
umount /dev/sr0 | |
eject | |
done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment