#!/bin/bash
-# burns a bluray disc image onto a physical medium.
+# burns a bluray or dvd data disc image onto a physical medium.
+
+source "$FEISTY_MEOW_SCRIPTS/core/launch_feisty_meow.sh"
function show_usage()
{
#used to be appended to above line: -speed=2
#trying with letting it go default speed. has been working for us recently.
+exit_on_error growing ISO FS from image ${iso_name}
+
#!/bin/bash
+# make a dvd data disc image suitable for burning on bluray.
+
+source "$FEISTY_MEOW_SCRIPTS/core/launch_feisty_meow.sh"
+
function show_usage()
{
echo "This script needs two parameters, (1) an ISO file to create, and"
genisoimage -r -J -joliet-long -o "$iso_name" "$folder_name"
+exit_on_error generating ISO image from folder ${folder_name}
+
#!/bin/bash
+# makes a playable dvd movie disc image from a folder.
+# the folder has to contain a ripped and decrypted DVD.
+
+source "$FEISTY_MEOW_SCRIPTS/core/launch_feisty_meow.sh"
+
function show_usage()
{
echo "This script needs two parameters, (1) an ISO file to create, and"
mkisofs -dvd-video -o "$iso_name" "$folder_name"
+exit_on_error making ISO filesystem from folder ${folder_name}