Oke, that is indeed better, but then the question becomes: is libbluray going to support libarchive :-)<div>I can imagine that supporting .iso sounds obvious (it does to me) but supporting .tar or .7z or whatever is a lot less obvious to contain a blu ray folder. iso files are mostly an image of cd/dvd/blu-ray/...<br>

<div><br><div class="gmail_quote">On Wed, Apr 27, 2011 at 6:30 PM, John Stebbins <span dir="ltr"><<a href="mailto:stebbins@jetheaddev.com">stebbins@jetheaddev.com</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex;">

<div class="im">On 04/27/2011 07:40 AM, Mark wrote:<br>
</div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div class="im">
Any feedback on this request?<br>
<br></div><div><div></div><div class="h5">
On Sat, Apr 23, 2011 at 10:31 PM, Mark <<a href="mailto:markg85@gmail.com" target="_blank">markg85@gmail.com</a> <mailto:<a href="mailto:markg85@gmail.com" target="_blank">markg85@gmail.com</a>>> wrote:<br>
<br>
    Hi,<br>
<br>
    I first made this request on mplayer-dev-eng:<br>
    <a href="http://lists.mplayerhq.hu/pipermail/mplayer-dev-eng/2011-April/068210.html" target="_blank">http://lists.mplayerhq.hu/pipermail/mplayer-dev-eng/2011-April/068210.html</a> since i was under the impression that<br>


    they had to make support for it if it would be accepted, but i got told that the library (libbluray) has to add<br>
    support for it if it gets accepted...<br>
<br>
    So hereby the request. Could you guys add support for loading ISO files (blu-ray images)?<br>
    The error i'm currently getting from mplayer when loading an iso is this:<br>
    --------------------------------<br>
    Playing br://.<br>
    get_path('sub/') -> '/home/mark/.mplayer/sub/'<br>
    libbluray/bdnav/index_parse.c:157: indx_parse(): error opening filename.iso/BDMV/index.bdmv<br>
    libbluray/bluray.c:1448: nav_get_title_list(filename.iso) failed (0x1b82120)<br>
    Can't find any Blu-ray-compatible title here.<br>
    No stream found to handle url br://<br>
<br>
    vo: x11 uninit called but X11 not initialized..<br>
<br>
    Exiting... (End of file)<br>
    --------------------------------<br>
<br>
    And if support for iso loading gets added then it does make loading blu-ray movies a lot less complex since<br>
    mounting the iso is not required anymore and also sudo or root permissions are not needed anymore to mount.<br>
<br>
    What do you think of it?<br>
<br>
    Regards,<br>
    Mark<br>
<br>
<br>
</div></div></blockquote>
<br>
Personally, on linux I would much rather see UDF support added to libarchive so that all apps could benefit from it.  This is what is used for doing user fs mounts transparently in nautilus and other apps.  On windows, there are already free tools available for doing this (e.g. Virtual CloneDrive).  For now, I just use a script to loop mount the iso.<br>


<br>
#!/bin/bash<br>
dir=${HOME}/ISO/$(basename "$1" | sed -e 's/\.iso$//')<br>
mkdir -p "${dir}"<br>
sudo mount -o loop "$1" "${dir}"<br>
<br>
_______________________________________________<br>
libbluray-devel mailing list<br>
<a href="mailto:libbluray-devel@videolan.org" target="_blank">libbluray-devel@videolan.org</a><br>
<a href="http://mailman.videolan.org/listinfo/libbluray-devel" target="_blank">http://mailman.videolan.org/listinfo/libbluray-devel</a><br>
</blockquote></div><br></div></div>