Here is my contribution : a post-processing script for linux to create an ISO file from a downloaded bluray folder strucure.
It just needs the genisoimage package.
I use this script daily since a month, and it's working great !
My linux box is on Debian wheezy, and ISO files are all ok to play with Arcsoft Total Media Theatre 5.
I can't guarantee it will work on other distributions, or other bluray players as i didn't test... but your results are welcome !
I'm still a beginner in bash scripting, so don't hesitate to comment and modify it.
Code: Select all
#!/bin/bash
#
CHEMIN_BDMV=`find "$1" -name "BDMV" -print0`
if [[ $CHEMIN_BDMV == *BDMV* ]]; then
echo "OK : BDMV Path found : $CHEMIN_BDMV"
else
echo "KO : BDMV Path not found... EXIT"
exit 1
fi
# Example : genisoimage -iso-level 4 -allow-lowercase -l -udf -allow-limited-size -V "KING_KONG" -o "/kingking.iso" "/media/kingkong"
genisoimage -iso-level 4 -allow-lowercase -l -udf -allow-limited-size -V "$3" -o "$1/$3.iso" "$CHEMIN_BDMV/.."
exit 0
- Uppercase, and replace spaces in volume name ("king kong" -> "KING_KONG")
- and delete the floder structure at the end, but keep the top-level downloaded folder...
so if anybody can sugest something
