![]() |
|
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 184 185 |
RE: Another External Player Code, but Very Simple to Setup - bluray - 2012-06-18 16:20 (2012-06-18 00:25)Hail.ceasar Wrote: Is there no way at all to launch powerdvd12 with these codes?Since Cyberlink decided to change index.bdmv launch routine, there is no way to make it launch automatically with the code. I stated it in post #668...... @shaktoo- I don't know the answer to all your questions. As for the subtitle question, you might want to relay your question to Cyberlink instead. For 3d SBS, you can read this thread "3D Full SBS (3840x1080)... Success!" for more info........ RE: Another External Player Code, but Very Simple to Setup - Jong - 2012-06-19 21:36 Thanks for your work on this. Things are oh so nearly working, but TMT5 is not focused after it is launched. The player is full screen and the iso is loaded, but the keyboard/remote does not work until I alt-tab until TMT is focused! Any thoughts/ideas/workarounds? RE: Another External Player Code, but Very Simple to Setup - Wilson - 2012-06-19 23:07 Hey Blu, just when you thought you'd heard the last of me ![]() I'm having problems using powerdvd12 as my external player for bluray isos. Using the codes in these posts i can get powerdvd to launch, but when i press play it tells me there is no disc in drive k: I have a feeling its something to do with the image mounting. Ideally i want xbmc to play everthing apart from bluray discs, dvds and blu ray .iso here is my <playercorefactory> <players> <player name="BDMV_Player" type="ExternalPlayer" audio="false" video="true"> <!-- You can place your PlayBDMV file anywhere --> <filename>C:\Users\Home\AppData\Roaming\XBMC\userdata\PlayBDMV.bat</filename> <args>"{1}"</args> <hidexbmc>true</hidexbmc> <hideconsole>true</hideconsole> <warpcursor>none</warpcursor> </player> <player name="Universal_Player" type="ExternalPlayer" audio="false" video="true"> <filename>C:\Program Files (x86)\CyberLink\PowerDVD12\PDVDLaunchPolicy.exe</filename> <args>"{1}"</args> <hidexbmc>true</hidexbmc> <hideconsole>true</hideconsole> <warpcursor>none</warpcursor> </player> <player name="ISO_Player" type="ExternalPlayer" audio="false" video="true"> <!-- You can place your PlayISO file anywhere --> <filename>C:\Users\Home\AppData\Roaming\XBMC\userdata\PlayISO.bat</filename> <args>"{1}"</args> <hidexbmc>true</hidexbmc> <hideconsole>true</hideconsole> <warpcursor>none</warpcursor> </player> <player name="Disc_Player" type="ExternalPlayer" audio="false" video="true"> <!-- You can place your PlayDisc file anywhere --> <filename>C:\Users\Home\AppData\Roaming\XBMC\userdata\PlayDisc.bat</filename> <args>"{1}"</args> <hidexbmc>true</hidexbmc> <hideconsole>true</hideconsole> <warpcursor>none</warpcursor> </player> </players> <rules action="prepend"> <rule filetypes=".*bdmv.*" player="BDMV_Player"/> <rule filetypes=".*iso.*" player="ISO_Player"/> <rule filetypes=".*m2ts.*" player="Universal_Player"/> <rule filetypes=".*mkv.*" player="Universal_Player"/> <rule filetypes=".*avi.*" player="Universal_Player"/> <rule filetypes=".*ts.*" player="Universal_Player"/> <rule name="Blu-Ray" filename="K:\\.*" filetypes="bdmv" player="Disc_Player"/> </rules </playercorefactory> playiso.bat @echo off "C:\Program Files (x86)\Elaborate Bytes\VirtualCloneDrive\VCDMount.exe" /d=0 %1 "C:\Program Files (x86)\CyberLink\PowerDVD12\PDVDLaunchPolicy.exe" K: "C:\Program Files (x86)\Elaborate Bytes\VirtualCloneDrive\VCDMount.exe" /d=0 /u Thanks in advance, and i will polish your shoes and iron your pants every morning
RE: Another External Player Code, but Very Simple to Setup - Jong - 2012-06-19 23:25 (2012-06-19 21:36)Jong Wrote: Thanks for your work on this. Things are oh so nearly working, but TMT5 is not focused after it is launched. The player is full screen and the iso is loaded, but the keyboard/remote does not work until I alt-tab until TMT is focused! Any thoughts/ideas/workarounds?It's XBMC that remains focused. Even though TMT is full screen and in the foreground if I press alt-F4 XBMC closes!
RE: Another External Player Code, but Very Simple to Setup - timberman - 2012-06-20 00:05 bluray ....Hi You helped me out before with the playcorefactory files. I using the latest TMT5 , but when i started to use nighly build of xbmc it stopped working. Everytime when i start a file i get a menu in xbmc to choose what track i want to start. Guess they change something? Is this something that you can fix so i get the external player working again? Thankful for some help. Have it great RE: Another External Player Code, but Very Simple to Setup - bluray - 2012-06-21 02:22 (2012-06-19 23:25)Jong Wrote:Have you try <hidexbmc>true</hidexbmc>?(2012-06-19 21:36)Jong Wrote: Thanks for your work on this. Things are oh so nearly working, but TMT5 is not focused after it is launched. The player is full screen and the iso is loaded, but the keyboard/remote does not work until I alt-tab until TMT is focused! Any thoughts/ideas/workarounds?It's XBMC that remains focused. Even though TMT is full screen and in the foreground if I press alt-F4 XBMC closes! (2012-06-20 00:05)timberman Wrote: bluray ....HiI'm not sure what have been changed/added in nightly build. I'm suggesting to stick with stable 11.0 for now..... RE: Another External Player Code, but Very Simple to Setup - bluray - 2012-06-21 02:43 @wilson- Give these codes a try (replace K in the red lines with the correct BD-ROM drive and replace K in the blue line with the correct available VCD drive).... <playercorefactory> </player> <player name="Disc_Player" type="ExternalPlayer" audio="false" video="true"> <filename>C:\Program Files (x86)\CyberLink\PowerDVD12\PDVDLaunchPolicy.exe</filename> <args>"{K:}"</args> <hidexbmc>true</hidexbmc> <hideconsole>true</hideconsole> <warpcursor>none</warpcursor> </player> <player name="ISO_Player" type="ExternalPlayer" audio="false" video="true"> <filename>C:\Users\Home\AppData\Roaming\XBMC\userdata\PlayISO.bat</filename> <args>"{1}"</args> <hidexbmc>true</hidexbmc> <hideconsole>true</hideconsole> <warpcursor>none</warpcursor> </player> </players> <rules action="prepend"> <rule filetypes=".*iso.*" player="ISO_Player"/> <rule name="Blu-Ray" filename="K:\\.*" filetypes="bdmv" player="Disc_Player"/> </rules> </playercorefactory> playiso.bat @echo off "C:\Program Files (x86)\Elaborate Bytes\VirtualCloneDrive\VCDMount.exe" /d=0 %1 "C:\Program Files (x86)\CyberLink\PowerDVD12\PDVDLaunchPolicy.exe" K: RE: Another External Player Code, but Very Simple to Setup - Wilson - 2012-06-21 12:52 (2012-06-21 02:43)bluray Wrote: @wilson- Thanks Blu, really appreciate your help, I'll try this tonight and let you know.....that's another beer i owe you
RE: Another External Player Code, but Very Simple to Setup - tismon - 2012-06-21 16:59 If you wouldn't mind, out of the three suggested players, which would give the best/most seamless experience? Thank you RE: Another External Player Code, but Very Simple to Setup - Hessi - 2012-06-21 18:47 Hey dude (bluray) ![]() Awesome work, much appreciated! Just a couple of questions... are the files updated for the latest official XBMC release and PowerDVD (12)? And is it possible to bitstream stereo music from FLAC and WMA lossless files? Once again, big thanks for the awesome work!
|