<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
  <meta content="text/html; charset=ISO-8859-1"
 http-equiv="Content-Type">
</head>
<body text="#000000" bgcolor="#ffffff">
On 01/02/11 16:15, Raymond Wagner wrote:
<blockquote cite="mid:4D4831AF.6050909@wagnerrp.com" type="cite">
  <meta content="text/html; charset=ISO-8859-1"
 http-equiv="Content-Type">
On 2/1/2011 09:45, Ryan Rustong wrote:
  <blockquote
 cite="mid:AANLkTikY7NPv--9_5Bu+GUM23uu4ybOoaJaLh1+5+bKz@mail.gmail.com"
 type="cite">
    <div><br>
    <div class="gmail_quote">On Mon, Jan 31, 2011 at 12:15 PM, Steve
Harrington <span dir="ltr">&lt;<a moz-do-not-send="true"
 href="mailto:steve@the-harringtons.org">steve@the-harringtons.org</a>&gt;</span>
wrote:<br>
    <blockquote class="gmail_quote"
 style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">
      <div class="im"><br>
      </div>
Thanks for the clarification.<br>
    </blockquote>
    </div>
    <br>
    </div>
    <div>Not sure if you were looking for a way to play BD iso's or
just curious about the development status, but I came across this
script over the weekend which allowed me to play a BD iso that I had
created.&nbsp;<a moz-do-not-send="true"
 href="http://www.mythtv.org/wiki/Iso-play.sh">http://www.mythtv.org/wiki/Iso-play.sh</a>&nbsp;&nbsp;Setup

was pretty easy and I haven't had any problems with the script yet.<br>
    </div>
  </blockquote>
  <br>
It requires the content be mounted locally, so the loop mount can
access it.&nbsp; That violates the whole purpose of storage groups.<br>
  <pre wrap="">
<fieldset class="mimeAttachmentHeader"></fieldset>
_______________________________________________
mythtv-users mailing list
<a class="moz-txt-link-abbreviated" href="mailto:mythtv-users@mythtv.org">mythtv-users@mythtv.org</a>
<a class="moz-txt-link-freetext" href="http://mythtv.org/cgi-bin/mailman/listinfo/mythtv-users">http://mythtv.org/cgi-bin/mailman/listinfo/mythtv-users</a>
  </pre>
</blockquote>
<br>
I wrote this little script on the back-end, this works with
storage-groups. It was hard coded for my paths, so wont run as is, you
need to change the paths for your system.<br>
<br>
I only have a couple of ISOs so I don't know if loop mounting large
volumes will actually burn any resources.<br>
<br>
I put all the ISOs in a folder HDISO, and then running the script mount
all ISOs as if they are folders within the VIDEO/HD directory.<br>
<br>
#!/bin/bash<br>
SAVEIFS=$IFS<br>
IFS=$(echo -en "\n\b")<br>
for i in $( ls /path to folder/HDISO | grep -i iso ); do<br>
echo $i <br>
foldername=${i%.iso}<br>
echo "$foldername" <br>
mkdir /path to video folder/VIDEO/HD/$foldername<br>
sudo mount -o loop -t udf /path to folder/HDISO/$i /path to
folder/VIDEO/HD/$foldername <br>
done<br>
IFS=$SAVEIFS<br>
<br>
</body>
</html>