<br><div class="gmail_quote"><blockquote class="gmail_quote" style="margin: 0pt 0pt 0pt 0.8ex; border-left: 1px solid rgb(204, 204, 204); padding-left: 1ex;"><div text="#000000" bgcolor="#ffffff"><blockquote type="cite"><blockquote type="cite">
<div>Not sure if you were looking for a way to play BD iso&#39;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. <a href="http://www.mythtv.org/wiki/Iso-play.sh" target="_blank">http://www.mythtv.org/wiki/Iso-play.sh</a>  Setup

was pretty easy and I haven&#39;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.  That violates the whole purpose of storage groups.<br>
  <pre><fieldset></fieldset>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></pre></blockquote>
<br>
I only have a couple of ISOs so I don&#39;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 &quot;\n\b&quot;)<br>
for i in $( ls /path to folder/HDISO | grep -i iso ); do<br>
echo $i <br>
foldername=${i%.iso}<br>
echo &quot;$foldername&quot; <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></div></blockquote></div><br>Stupid question, but I just put out a folder called the title of the movie, and I can hit play on that folder, and it works fine.  What&#39;s the reason for ISO?  Is it just a storage group thing?<br>