X-Git-Url: https://feistymeow.org/gitweb/?a=blobdiff_plain;f=scripts%2Frip_burn%2Fblu_burn.sh;h=33317c0e84fa9ca584f73b0b24d60341a6b2ea2e;hb=5d4046f0dd4f4281e7a898b9595d2f3ff800152d;hp=26f071b53109dac0ba7f4f576969d5fd8efaa798;hpb=e2b2c974b9b441cfe65e9b3530807d13bd73fef0;p=feisty_meow.git diff --git a/scripts/rip_burn/blu_burn.sh b/scripts/rip_burn/blu_burn.sh index 26f071b5..33317c0e 100644 --- a/scripts/rip_burn/blu_burn.sh +++ b/scripts/rip_burn/blu_burn.sh @@ -1,5 +1,7 @@ #!/bin/bash +# burns a bluray disc image onto a physical medium. + function show_usage() { echo "This script needs two parameters, (1) an ISO file that provides the" @@ -27,7 +29,9 @@ if [ ! -b "$device_name" ]; then exit 3 fi -"$iso_name" "$device_name" +echo iso "$iso_name" dev "$device_name" -growisofs -speed=2 -dvd-compat -Z ${device_name}=${iso_name} +growisofs -dvd-compat -Z ${device_name}=${iso_name} +#used to be appended to above line: -speed=2 +#trying with letting it go default speed. has been working for us recently.