![]() |
|
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-22 17:55 @wraslor- Let try these- Create a UniversalPlayer.bat file- @echo off "C:\Program Files (x86)\CyberLink\PowerDVD11\powerdvd11.exe" and use these playercorefactory codes- <player name="Universal_Player" type="ExternalPlayer" audio="false" video="true"> <filename>C:\Users\media center\AppData\Roaming\XBMC\userdata\UniversalPlayer.bat</filename> <args>"{1}" /fullscreen</args> <hidexbmc>true</hidexbmc> <hideconsole>true</hideconsole> <warpcursor>none</warpcursor> </player> </players> <rules action="prepend"> <!-- Bluray ISO --> <rule filename=".*iso.*" player="ISO_Player"/> <!-- Bluray BDMV --> <rule filename=".*bdmv.*" player="BDMV_Player"/> <!-- Bluray M2TS --> <rule filename=".*m2ts.*" player="Universal_Player"/> <!-- Bluray Disc --> <rule name="Blu-Ray" filename="G:\\.*" filetypes="bdmv" player="Disc_Player"/> </rules> </playercorefactory> Make sure to set PDVD11 to automatic launch fullscreen in PDVD11 UI..... RE: Another External Player Code, but Very Simple to Setup - wraslor - 2012-04-22 19:14 @bluray Same result xbmc freezes for a min and nothing happens. If I open up the task manager I can see that it launched powerdvd11.exe It's like it isn't being brought to the front and playing. Doesn't make sense. In media browser for example it works fine everytime do they have some special switch im not aware of? I've looked through their config file and nothing jumps out at me. RE: Another External Player Code, but Very Simple to Setup - bluray - 2012-04-22 19:24 @wraslor- Something is conflicting in your HTPC then, the codes are correct...... One last try...change these 4 lines with the codes below- <args>"{1}"</args> <hidexbmc>false</hidexbmc> <hideconsole>false</hideconsole> <warpcursor>none</warpcursor> Let me ask you this- Is your m2ts file work fine on PDVD11 without XBMC? RE: Another External Player Code, but Very Simple to Setup - wraslor - 2012-04-22 20:19 I'll give it a shot when I get home this evening, I'm about to head out for work. Yes the m2ts files (I have quite a few 3D movies encoded to m2ts) launch and play fine from power dvd itself or via mediabrowser launching powerdvd. I appreciate all the help and I'll let you know what I find. RE: Another External Player Code, but Very Simple to Setup - andyd - 2012-04-22 23:32 (2012-04-21 23:09)andyd Wrote: Nevermind. Figured it out. It was a mixture of things including not formatting the name of the exe properly for TMT 5 Sorry to bother again on this but I can't figure out what's going on with my Star Wars bluray rips All other bluray rips launch properly. If I load the movie manually into TMT5, that works. But if I try to launch within XBMC, it will return a VCDMount error which should never happen? RE: Another External Player Code, but Very Simple to Setup - bluray - 2012-04-23 00:14 (2012-04-22 23:32)andyd Wrote: Sorry to bother again on this but I can't figure out what's going on with my Star Wars bluray ripsCheck VCD drive that is dedicated for ISO to make sure that there is nothing mounted on it...... RE: Another External Player Code, but Very Simple to Setup - andyd - 2012-04-23 02:30 Definitely nothing mounted. I can switch between blurays no problem. It's just Star Wars that is giving me problems. What are the chances that the path name length is too long? It's set up like this... \\HOMESERVER\Videos\Movies\Bluray\The Star Wars Saga\Star Wars Episode I - The Phantom Menace\BDMV RE: Another External Player Code, but Very Simple to Setup - bluray - 2012-04-23 07:27 (2012-04-23 02:30)andyd Wrote: Definitely nothing mounted. I can switch between blurays no problem. It's just Star Wars that is giving me problems. What are the chances that the path name length is too long? It's set up like this...I'm not quite sure then.....you can try to save it to a different name but shorter name....and try to playback it! RE: Another External Player Code, but Very Simple to Setup - wraslor - 2012-04-23 16:25 Figured it out! The args caused the problem. Setting to only {0} and it all works. <playercorefactory> <players> <player name="ISO_Player" type="ExternalPlayer" audio="false" video="true"> <filename>C:\Users\media center\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\media center\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\media center\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)\CyberLink\PowerDVD11\PDvdlaunchpolicy.exe</filename> <args>"{0}"</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="BDMV_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 - bluray - 2012-04-23 16:49 (2012-04-23 16:25)wraslor Wrote: Figured it out! The args caused the problem. Setting to only {1} and it all works.There is always one last try as I mentioned in post #553. I'm glad that it works out well for you.....every HTPC works slightly different....
|