![]() |
|
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 - shaktoo - 2012-06-10 22:11 bluray I am using PDVDlaunch Policy already. any thoughts on how to exit the programme to get back to xbmc using remote ? RE: Another External Player Code, but Very Simple to Setup - bluray - 2012-06-10 23:34 (2012-06-10 22:11)shaktoo Wrote: bluray I am using PDVDlaunch Policy already. any thoughts on how to exit the programme to get back to xbmc using remote ?Have you try to hit STOP and BACK buttons? I know on the keyboard I have to hits Ctrl+X to exit PDVD11..... RE: Another External Player Code, but Very Simple to Setup - Ghostdivision - 2012-06-11 01:20 (2012-06-10 19:50)bluray Wrote:(2012-06-10 03:58)Ghostdivision Wrote:PDVD11 should work with index.bdmv, and here are your external player codes......these codes will allow you to playback blu-ray ISO/BDMV using PDVD11+XBMC11.0.......(2012-06-10 01:29)niv.itz Wrote: Try this- Thanks, i tried this but not luck, it just sits there, is it safe to say powerdvd just wont work launching bdmv folders? Not even 11? I\ RE: Another External Player Code, but Very Simple to Setup - Ghostdivision - 2012-06-11 02:22 Also is there a way for iso's to autoplay in powerdvd? Iso's work, but when powerdvd is launched you still have to hit play... Update: Found that pointing to this autoplays iso's, appears to be a location for powerdvd mce...might be better for mce remote support as well. C:\Program Files (x86)\CyberLink\PowerDVD11\Movie\PowerDVD Cinema\PowerDVDCinema11.exe Still cannot get bdmv folders working though with powerdvd 11, just wont play. RE: Another External Player Code, but Very Simple to Setup - aznxtc - 2012-06-11 09:03 Bluray, I hope you can help me i have a problem when i play music it keeps on defaulting to the external player powerdvd 12...Is there a code i can put in the playercorefactory.xml so it can default to the internal xbmc player...Thanks. RE: Another External Player Code, but Very Simple to Setup - bluray - 2012-06-11 16:58 (2012-06-11 01:20)Ghostdivision Wrote: Thanks, i tried this but not luck, it just sits there, is it safe to say powerdvd just wont work launching bdmv folders? Not even 11?There must be something missing in your HTPC....do you have this "Microsoft Visual C++ 2010 Redistributable Package (x86)" and other Windows updates installed? I tried PDVD11 trial version on my HTPC before I posted the codes in post #678 yesterday. The blu-ray BDMV and ISO movies launched automatically....and when I relaunched it, it asked me to Resume/Restart the movies..... So, PDVD11 works fine with the codes.........please check all your updates and make sure to use the exact codes in post #678....you only need to change VCD drive in PlayISO.bat code........ (2012-06-11 09:03)aznxtc Wrote: Bluray,You can post your playercorefactory codes in here.....we'll see what you have in it....! RE: Another External Player Code, but Very Simple to Setup - aznxtc - 2012-06-11 20:26 Here is my playercorefactory.xml. <playercorefactory> <players> <player name="BDMV_Player" type="ExternalPlayer" audio="false" video="true"> <!-- You can place your PlayBDMV file anywhere --> <filename>C:\Users\vewlix\AppData\Roaming\XBMC\userdata\PlayBDMV.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>D:\Program Files (x86)\CyberLink\PowerDVD12\PowerDVD12\PowerDVD12.exe</filename> <args>"{1}" /fullscreen</args> <hidexbmc>true</hidexbmc> <hideconsole>false</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\vewlix\AppData\Roaming\XBMC\userdata\PlayISO.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"> <!-- You can place your PlayDisc file anywhere --> <filename>C:\Users\vewlix\AppData\Roaming\XBMC\userdata\PlayDisc.bat</filename> <args>"{1}" /fullscreen</args> <hidexbmc>true</hidexbmc> <hideconsole>false</hideconsole> <warpcursor>none</warpcursor> </player> </players> <rules action="prepend"> <rule filetypes="bdmv" player="BDMV_Player"/> <rule filetypes="m2ts|mkv|avi|ts" player="Universal_Player"/> <rule filetypes="iso" player="ISO_Player"/> <rule name="Blu-Ray" filename="G:\\.*" filetypes="bdmv" player="Disc_Player"/> </rules> </playercorefactory> RE: Another External Player Code, but Very Simple to Setup - bluray - 2012-06-11 23:25 @aznxtc- You can try the rules below: <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="G:\\.*" filetypes="bdmv" player="Disc_Player"/> </rules RE: Another External Player Code, but Very Simple to Setup - Ghostdivision - 2012-06-12 01:05 Thanks got it working, noticed you dont point to the bdmv.bat with powerdvd 11. RE: Another External Player Code, but Very Simple to Setup - Ghostdivision - 2012-06-12 01:38 Does powerdvd have any problems with mce remotes? I see a few people complaining about complications, i hope its nothing that cant be worked out for proper control. The mce powerdvd plugin does not support index.bdmv, so i have to use the regular player. |