• 1
  • 4
  • 5
  • 6(current)
  • 7
  • 8
  • 10
play Bluray iso with xbmc
#76
Hi all,

Tried this out and got it to work but the audio stutters every 4-5 seconds.

Is there a work around for this?

Thanks
Reply
#77
robump Wrote:Hi all,

Tried this out and got it to work but the audio stutters every 4-5 seconds.

Is there a work around for this?

Thanks
is your video card driver up to date?

if you need help on it, you can include the log here- pastebin
>Alienware X51- do it all HTPC
>Simplify XBMC configurations
>HOW-TO Bitstreaming using XBMC
I refused to watch movie without bitstreaming HD audio!
Reply
#78
bluray Wrote:these codes should work, and you need to structure the folder and codes as the enclosed guide in the link. it work flawless on my three htpcs- xbmc_vcd_tmt5 (if you want to use your personal player, you can simply replace tmt5)

below are the actual codes, and you can simply copy the coded into notepad to create the files and save it in the folder as above and replace tmt5 with powerdvd:

PlayDisc.BAT
"C:\Program Files (x86)\ArcSoft\TotalMedia Theatre 5\uTotalMediaTheatre5.exe" E: (note- E: is bd-rom)

PlayISO.BAT
"C:\Program Files (x86)\Elaborate Bytes\VirtualCloneDrive\VCDMount.exe" /d=0 %1
"C:\Program Files (x86)\ArcSoft\TotalMedia Theatre 5\uTotalMediaTheatre5.exe" N: (note-N: is vcd drive use for mounting iso)
"C:\Program Files (x86)\Elaborate Bytes\VirtualCloneDrive\VCDMount.exe" /d=0 /u

playercorefactory.XML
<playercorefactory>
<players>
<player name="PlayISO" type="ExternalPlayer" audio="false" video="true">
<filename>C:\Users\Dell\AppData\Roaming\XBMC\userdata\PlayISO.bat</filename>
<args>"{1}" /fullscreen /close</args>
<forceontop>false</forceontop>
<hidexbmc>false</hidexbmc>
<hidecursor>false</hidecursor>
</player>
<player name="PlayDisc" type="ExternalPlayer" audio="false" video="true">
<filename>C:\Users\Dell\AppData\Roaming\XBMC\userdata\PlayDisc.bat</filename>
<args>"{1}" /fullscreen /close</args>
<forceontop>false</forceontop>
<hidexbmc>false</hidexbmc>
<hidecursor>false</hidecursor>
</player>
</players>
<rules action="prepend">
<!-- Bluray ISO -->
<rule filename="*iso*" player="PlayISO"/>

<!-- Bluray Disc -->
<rule protocols="bd" player="PlayDisc"/>
</rules>
</playercorefactory>

if the folders of your vcd and tmt5 are different from mine, you can change it to the correct folders!

Hi,

This is my first post here, although I've been reading for quite some time.

I have a question.

I followed the above instructions to the letter, and now blu ray iso files open up perfectly with TMT5. However my library is made up of mostly bdmw structure blu rays.

Any idea how I can open up a blu ray that is a bdmv folder structure (as opposed to iso) with TMT 5 from XBMC?

Thanks Smile
Reply
#79
Tried it with

Code:
"c:\Program Files (x86)\ArcSoft\TotalMedia Theatre 5\uTotalMediaTheatre5.exe" %~dp1
?
Reply
#80
But what should I add to the playercorefactory.XML and should I make another batch file?

Thanks
Reply
#81
foxm2k Wrote:Tried it with

Code:
"c:\Program Files (x86)\ArcSoft\TotalMedia Theatre 5\uTotalMediaTheatre5.exe" %~dp1
?

Hi,

Thanks for this, I also found this post.

However the problem is that TMT5 starts, but does not play anything!

This is my playercorefactory.xml:
Code:
<playercorefactory>
    <players>
        <player name="PlayISO" type="ExternalPlayer" audio="false" video="true">
            <filename>C:\Users\Antoine\AppData\Roaming\XBMC\userdata\PlayISO.bat</filename>
            <args>"{1}" /fullscreen /close</args>
            <forceontop>false</forceontop>
            <hidexbmc>false</hidexbmc>
            <hidecursor>false</hidecursor>
        </player>
        <player name="PlayDisc" type="ExternalPlayer" audio="false" video="true">
            <filename>C:\Users\Antoine\AppData\Roaming\XBMC\userdata\PlayDisc.bat</filename>
            <args>"{1}" /fullscreen /close</args>
            <forceontop>false</forceontop>
            <hidexbmc>false</hidexbmc>
            <hidecursor>false</hidecursor>
        </player>
        <player name="PlayFolder" type="ExternalPlayer" audio="false" video="true">
            <filename>C:\Users\Antoine\AppData\Roaming\XBMC\userdata\PlayFolder.bat</filename>
            <args>"{1}"</args>
            <forceontop>false</forceontop>
            <hidexbmc>false</hidexbmc>
            <hidecursor>false</hidecursor>
           </player>
    </players>
    <rules action="prepend">
        <!-- Bluray ISO -->
        <rule filetypes="iso" player="PlayISO"/>
        <!-- Bluray Disc -->
        <rule protocols="bd" player="PlayDisc"/>
        <!-- Bluray Folder -->
        <rule filetypes="bdmv" player="PlayFolder"/>
    </rules>
</playercorefactory>

This is the PlayFolder.BAT:
Code:
"C:\Program Files (x86)\ArcSoft\TotalMedia Theatre 5\uTotalMediaTheatre5.exe" %~dp1
exit

Don't know why TMT5 is starting but the movie is not!

Any help is appreciated.

Thanks
Reply
#82
foxm2k Wrote:Tried it with

Code:
"c:\Program Files (x86)\ArcSoft\TotalMedia Theatre 5\uTotalMediaTheatre5.exe" %~dp1
?

Tried this one but it did not work either. Tried reinstalling TMT5 and nothing as well.

TMT5 just starts but does not play anything!

Any help is appreciated Smile
Reply
#83
I removed the spaces and brackets from the folder names and everything works now.

So Source Code (2011) became Source_Code_2011

This is the code:
playercorefactory.xml
Code:
<playercorefactory>
    <players>
        <player name="PlayISO" type="ExternalPlayer" audio="false" video="true">
            <filename>C:\Users\Antoine\AppData\Roaming\XBMC\userdata\PlayISO.bat</filename>
            <args>"{1}" /fullscreen /close</args>
            <forceontop>false</forceontop>
            <hidexbmc>false</hidexbmc>
            <hidecursor>false</hidecursor>
        </player>
        <player name="PlayDisc" type="ExternalPlayer" audio="false" video="true">
            <filename>C:\Users\Antoine\AppData\Roaming\XBMC\userdata\PlayDisc.bat</filename>
            <args>"{1}" /fullscreen /close</args>
            <forceontop>false</forceontop>
            <hidexbmc>false</hidexbmc>
            <hidecursor>false</hidecursor>
        </player>
        <player name="PlayFolder" type="ExternalPlayer" audio="false" video="true">
            <filename>C:\Users\Antoine\AppData\Roaming\XBMC\userdata\PlayFolder.bat</filename>
            <args>"{1}"</args>
            <forceontop>false</forceontop>
            <hidexbmc>false</hidexbmc>
            <hidecursor>false</hidecursor>
           </player>
    </players>
    <rules action="prepend">
        <!-- Bluray ISO -->
        <rule filetypes="iso" player="PlayISO"/>
        <!-- Bluray Disc -->
        <rule protocols="bd" player="PlayDisc"/>
        <!-- Bluray Folder -->
        <rule filetypes="bdmv" player="PlayFolder"/>
    </rules>
</playercorefactory>

PlayDisc.BAT
Code:
"C:\Program Files (x86)\ArcSoft\TotalMedia Theatre 5\uTotalMediaTheatre5.exe" E:

PlayISO.BAT
Code:
"C:\Program Files (x86)\Elaborate Bytes\VirtualCloneDrive\VCDMount.exe" /d=0 %1
"C:\Program Files (x86)\ArcSoft\TotalMedia Theatre 5\uTotalMediaTheatre5.exe" G:
"C:\Program Files (x86)\Elaborate Bytes\VirtualCloneDrive\VCDMount.exe" /d=0 /u

PlayFolder.BAT
Code:
"C:\Program Files (x86)\ArcSoft\TotalMedia Theatre 5\uTotalMediaTheatre5.exe" %~dp1
exit

However I'd like to keep the spacing in the folder names and the brackets...

So I'd like to keep them as Source Code (2011)

Any idea why the movie does not start in TMT5 if the folder name has spaces or brackets in it?

Thanks Smile
Reply
#84
Try modifying the batch file to put "echo" before the command and pause after it e.g.:

Code:
echo "C:\Program Files (x86)\ArcSoft\TotalMedia Theatre 5\uTotalMediaTheatre5.exe" %~dp1
pause

When the external player starts you'll get a command prompt showing you exactly what command is being executed.

If the problem happens when there are spaces in the file name it's probably either no quotes around the argument or too many quotes round the argument.

JR
Reply
#85
jhsrennie Wrote:Try modifying the batch file to put "echo" before the command and pause after it e.g.:

Code:
echo "C:\Program Files (x86)\ArcSoft\TotalMedia Theatre 5\uTotalMediaTheatre5.exe" %~dp1
pause

When the external player starts you'll get a command prompt showing you exactly what command is being executed.

If the problem happens when there are spaces in the file name it's probably either no quotes around the argument or too many quotes round the argument.

JR

This did not work, however I managed to make it work by using the following:
Code:
"C:\Program Files (x86)\ArcSoft\TotalMedia Theatre 5\uTotalMediaTheatre5.exe" "%~dp1"
exit

As you can see I just added the quotes around the parameter.

Thanks for the tip!

Now iso and bdmv folders play with TMT5 Smile

Thanks
Reply
#86
Nameless_87 Wrote:This did not work, however I managed to make it work by using the following:
Code:
"C:\Program Files (x86)\ArcSoft\TotalMedia Theatre 5\uTotalMediaTheatre5.exe" "%~dp1"
exit

As you can see I just added the quotes around the parameter.

Thanks for the tip!

Now iso and bdmv folders play with TMT5 Smile

Thanks
good job!
>Alienware X51- do it all HTPC
>Simplify XBMC configurations
>HOW-TO Bitstreaming using XBMC
I refused to watch movie without bitstreaming HD audio!
Reply
#87
PreEDEN11 with HD AUDIO Support
http://depositfiles.com/files/hq6yisp0m
Reply
#88
Anyone knows when Eden (official) is coming out?
Reply
#89
This works perfect!
Is it also posible to play DVD ISO's in the normal player?
Also DVD ISO plays in TMT 5 this way.
Reply
#90
duncanvdlinden Wrote:This works perfect!
Is it also posible to play DVD ISO's in the normal player?
Also DVD ISO plays in TMT 5 this way.
it should playback the same way. if you want to playback iso without external player, you can try this- blu-ray in 1080p with dts-hd and truehd.
>Alienware X51- do it all HTPC
>Simplify XBMC configurations
>HOW-TO Bitstreaming using XBMC
I refused to watch movie without bitstreaming HD audio!
Reply
  • 1
  • 4
  • 5
  • 6(current)
  • 7
  • 8
  • 10

Logout Mark Read Team Forum Stats Members Help
play Bluray iso with xbmc0