Skip to content

Instantly share code, notes, and snippets.

@brin100
Forked from danhigham/dvdrip.bash
Last active August 29, 2015 14:17
Show Gist options
  • Save brin100/58c32032b953e0f7b9ef to your computer and use it in GitHub Desktop.
Save brin100/58c32032b953e0f7b9ef to your computer and use it in GitHub Desktop.
#!/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