![]() |
|
Another External Player Code, but Very Simple to Setup - Printable Version +- XBMC Community Forum (http://forum.xbmc.org) +-- Forum: Help and Support (/forumdisplay.php?fid=33) +--- Forum: XBMC General Help and Support (/forumdisplay.php?fid=111) +---- Forum: Windows support (/forumdisplay.php?fid=59) +---- Thread: Another External Player Code, but Very Simple to Setup (/showthread.php?tid=116724) Pages: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 |
RE: Another External Player Code, but Very Simple to Setup - bluray - 2012-04-21 17:28 (2012-04-21 17:23)ponic Wrote: @blurayNo, the latest XBMC stable version is the Eden 11.0..... RE: Another External Player Code, but Very Simple to Setup - andyd - 2012-04-21 20:23 Have I done something wrong? For some reason XBMC keeps trying to mount index.bdmv but VCDMount refuses. I tried loading the movie in TMT 3 and TMT 5 both of which load the movie through a folder add. Given that, I would imagine VCDMount wouldn't be needed at all. Below are my configs. I tried switching the filename option for bdmv in corefactory to use the universal player instead so the batch process wouldn't run but I get the same results @echo off rem you can place your PlayBDMV file in \Roaming\XBMC\userdata\ set pth=%1 set pth=%pth:BDMV\index.bdmv=% "C:\Program Files (x86)\ArcSoft\TotalMedia Theatre 5\uMCEDVDPlayer5.exe" %pth% exit <playercorefactory> <players> <player name="ISO_Player" type="ExternalPlayer" audio="false" video="true"> <filename>C:\Users\Andy D\AppData\Roaming\XBMC\userdata\PlayISO.bat</filename> <args>"{1}" /fullscreen</args> <hidexbmc>true</hidexbmc> <hideconsole>false</hideconsole> <warpcursor>none</warpcursor> </player> <player name="BDMV_Player" type="ExternalPlayer" audio="false" video="true"> <filename>C:\Users\Andy D\AppData\Roaming\XBMC\userdata\PlayBDMV.bat</filename> <args>"{1}" /fullscreen</args> <hidexbmc>true</hidexbmc> <hideconsole>false</hideconsole> <warpcursor>none</warpcursor> </player> <player name="Disc_Player" type="ExternalPlayer" audio="false" video="true"> <filename>C:\Users\Andy D\AppData\Roaming\XBMC\userdata\PlayDisc.bat</filename> <args>"{1}" /fullscreen</args> <hidexbmc>true</hidexbmc> <hideconsole>false</hideconsole> <warpcursor>none</warpcursor> </player> <player name="Universal_Player" type="ExternalPlayer" audio="false" video="true"> <filename>C:\Program Files (x86)\ArcSoft\TotalMedia Theatre 5\uMCEDVDPlayer5.exe</filename> <args>"{1}" /fullscreen</args> <hidexbmc>true</hidexbmc> <hideconsole>false</hideconsole> <warpcursor>none</warpcursor> </player> </players> <rules action="prepend"> <!-- Bluray ISO --> <rule filename=".*iso.*" player="ISO_Player"/> <!-- Bluray BDMV --> <rule filename=".*bdmv.*" player="Universal_Player"/> <!-- Bluray M2TS --> <rule filename=".*m2ts.*" player="Universal_Player"/> <!-- Bluray Disc --> <rule protocols="bd|dvd" player="Disc_Player"/> </rules> </playercorefactory> RE: Another External Player Code, but Very Simple to Setup - wraslor - 2012-04-21 21:58 I'm hoping someone can help me out here. I want to use power dvd 11 to play m2ts, DVD, Bluray, and ISO files. I'm linking my player core files below. When I try to launch a m2ts or iso file xbmc freezes for about 10 secs and nothing happens. btw H: is virtual from vcd and G: is bluray drive. http://dl.dropbox.com/u/27640703/PlayBDMV.bat http://dl.dropbox.com/u/27640703/PlayDisc.bat http://dl.dropbox.com/u/27640703/playercorefactory.xml http://dl.dropbox.com/u/27640703/PlayISO.bat If someone could take a quick look and tell me what I'm missing I would appreciate it. RE: Another External Player Code, but Very Simple to Setup - bluray - 2012-04-21 22:26 (2012-04-21 20:23)andyd Wrote: </player>Since you are using the wrong rule, XBMC is confused. It's probably trying to use the next posibility to playback BDMV file. For it to work right, you need to replace this rule "<rule filename=".*bdmv.*" player="Universal_Player"/>" with this rule "<rule filename=".*bdmv.*" player="BDMV_Player"/>".......... RE: Another External Player Code, but Very Simple to Setup - andyd - 2012-04-21 22:40 Oh it was set to do that but I tried switching it to Universal Player just to try something different RE: Another External Player Code, but Very Simple to Setup - bluray - 2012-04-21 22:46 (2012-04-21 21:58)wraslor Wrote: I'm hoping someone can help me out here. I want to use power dvd 11 to play m2ts, DVD, Bluray, and ISO files. I'm linking my player core files below. When I try to launch a m2ts or iso file xbmc freezes for about 10 secs and nothing happens.You can try this rule for PDVD11 blu-ray disc- (<rule name="Blu-Ray" filename="G:\\.*" filetypes="bdmv" player="Disc_Player"/>) You can try these codes for ISO- @echo off "C:\Program Files (x86)\Elaborate Bytes\VirtualCloneDrive\VCDMount.exe" /I=H /d=0 %1 "C:\Program Files (x86)\CyberLink\PowerDVD11\PowerDVD11.exe" H: "C:\Program Files (x86)\Elaborate Bytes\VirtualCloneDrive\VCDMount.exe" /d=0 /u RE: Another External Player Code, but Very Simple to Setup - andyd - 2012-04-21 23:09 Nevermind. Figured it out. It was a mixture of things including not formatting the name of the exe properly for TMT 5 Update: So I finally figured out why I was having issues in the first place. For some reason, Star Wars won't load. All other movies do. When I try to load Star Wars Phantom Menace, I get the error that the vcdmount can't load RE: Another External Player Code, but Very Simple to Setup - wraslor - 2012-04-22 06:20 (2012-04-21 22:46)bluray Wrote:(2012-04-21 21:58)wraslor Wrote: I'm hoping someone can help me out here. I want to use power dvd 11 to play m2ts, DVD, Bluray, and ISO files. I'm linking my player core files below. When I try to launch a m2ts or iso file xbmc freezes for about 10 secs and nothing happens.You can try this rule for PDVD11 blu-ray disc- (<rule name="Blu-Ray" filename="G:\\.*" filetypes="bdmv" player="Disc_Player"/>) Tried these and still no go. If I change powerdvd11.exe to pdvdlaunchpolicy.exe it will launch power dvd and then go to a black screen and nothing happens. Any ideas? RE: Another External Player Code, but Very Simple to Setup - bluray - 2012-04-22 06:36 (2012-04-22 06:20)wraslor Wrote:Maybe, your htpc need this- Microsoft Visual C++ 2010 Redistributable Package (x86).(2012-04-21 22:46)bluray Wrote:(2012-04-21 21:58)wraslor Wrote: I'm hoping someone can help me out here. I want to use power dvd 11 to play m2ts, DVD, Bluray, and ISO files. I'm linking my player core files below. When I try to launch a m2ts or iso file xbmc freezes for about 10 secs and nothing happens.You can try this rule for PDVD11 blu-ray disc- (<rule name="Blu-Ray" filename="G:\\.*" filetypes="bdmv" player="Disc_Player"/>) RE: Another External Player Code, but Very Simple to Setup - wraslor - 2012-04-22 06:50 (2012-04-22 06:36)bluray Wrote:(2012-04-22 06:20)wraslor Wrote:Maybe, your htpc need this- Microsoft Visual C++ 2010 Redistributable Package (x86).(2012-04-21 22:46)bluray Wrote: You can try this rule for PDVD11 blu-ray disc- (<rule name="Blu-Ray" filename="G:\\.*" filetypes="bdmv" player="Disc_Player"/>) already installed. I did try an .iso and it unmounted before the movie could play so I deleted the line "C:\Program Files (x86)\Elaborate Bytes\VirtualCloneDrive\VCDMount.exe" /d=0 /u[/color] and they iso now plays fine. However none of the m2ts files are playing. With powerdvd11.exe I get nothing and with the pdvdlaunchpolicy I get the black screen. This isn't making any sense lol. I appreciate all the help hopefully we can figure this out. |