![]() |
|
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 |
- bluray - 2012-01-09 00:08 tomera69 Wrote:[quote=bluray]You can give these codes a try:-this rule will allow you to playback all blu-ray MKV files on your hard drive using PDVD10 <!-- Bluray MKV --> <rule filename=".*mkv.*" player="MKV_Player"/> -this rule will allow you to playback blu-ray disc directly on BD-ROM using PDVD10 with XBMC PlayDisc option <!-- Bluray Disc --> <rule protocols="bd|dvd" player="Disc_Player"/> If you don't want PDVD10 to start automatically when blu-ray disc is insert, you can do as shown below for Windows 7 Autoplay option (you can simply type "autoplay" in W7 Start search box to access it). Auto Play:
- bluc - 2012-01-09 00:40 All my bly rays are in iso format. I want to only play the 3d blu ray isos with external player tmt5 how can I edit the files so it only uses tmt5 for the 3d movies?? I am using thie xbmc eden + Pvr build found here http://www.scintilla.utwente.nl/~marcelg/xbmc/prebuild.html this build plays normal blu rays without modification out of the box but I need tmt5 to play 3d movies cheers. - bluray - 2012-01-09 01:34 bluc Wrote:All my bly rays are in iso format. I want to only play the 3d blu ray isos with external player tmt5 how can I edit the files so it only uses tmt5 for the 3d movies?? I am using thie xbmc eden + Pvr build found here http://www.scintilla.utwente.nl/~marcelg/xbmc/prebuild.html this build plays normal blu rays without modification out of the box but I need tmt5 to play 3d movies cheers.Yes, you can do it with these files below: 1. Install Virtual Clone Drive 2. Download these 2 files and place it in roaming/xbmc/userdat- Playercorefactory & PlayISO. Make sure to enter the correct VCD drive from HTPC. I used VCD "N:" drive in my HTPC. Make sure to enter the correct path for TMTs path in PlayISO and PlayISO path in Playercorefactory. - bluc - 2012-01-09 01:55 Tried your files but ALL blu rays play with tmt5. I ONLY want 3d blu ray to play with tmt5. I am having issue with standard blu ray play back with tmt5 wich is why I want to use the built in xbmc player for 2d blu ray but I need tmt5 for 3d Hope this is clear enough. - robl45 - 2012-01-09 02:17 bluc Wrote:Tried your files but ALL blu rays play with tmt5. I ONLY want 3d blu ray to play with tmt5. I am having issue with standard blu ray play back with tmt5 wich is why I want to use the built in xbmc player for 2d blu ray but I need tmt5 for 3d Hope this is clear enough. then you need to specify a file type, or if they are all .mkv, you will specify a word like SBS that would be in the file name to get it to play your 3d on a certain player. something like below, thats what I use to play my hsbs files externally through mpc-hc <rule filetypes="mkv|ts" filename="*sbs*" player="Universal_Player"/> - bluc - 2012-01-09 02:22 robl45 Wrote:then you need to specify a file type, or if they are all .mkv, you will specify a word like SBS that would be in the file name to get it to play your 3d on a certain player. something like below, thats what I use to play my hsbs files externally through mpc-hc Not mkv they are all full blu ray iso's same as my 2d blu ray which are also in iso they are all 1:1 disc copys of my original discs. Have tried adding <rule filename=".*3D.*" player="PlayISO"/> to the playercorefactory.xml and made sure all my 3d rips had "3d" in the iso filename but the 2d iso's still play in tmt5 ideas? - bluray - 2012-01-09 02:24 bluc Wrote:Tried your files but ALL blu rays play with tmt5. I ONLY want 3d blu ray to play with tmt5. I am having issue with standard blu ray play back with tmt5 wich is why I want to use the built in xbmc player for 2d blu ray but I need tmt5 for 3d Hope this is clear enough.The playercorefactory below should work then, but you have to name your 3d movie this way "movie title_3d.iso". Playercorefactory I used this rule "<rule filename=".*_3d.iso*" protocols="*_3d.iso*" player="ISO_Player"/>" in it. Everything else will playback using XBMC!
- bluc - 2012-01-09 02:41 Tried it now everything plays with xbmc here is full playercorefactory file<playercorefactory> <players> <player name="ISO_Player" type="ExternalPlayer" audio="false" video="false"> <filename>C:\Users\Dell\AppData\Roaming\XBMC\userdata\PlayISO.bat</filename> <args>"{1}" /fullscreen</args> <forceontop>false</forceontop> <hidexbmc>false</hidexbmc> <hidecursor>false</hidecursor> </player> </players> <rules action="prepend"> <!-- Bluray ISO --> <rule filename=".*_3d.iso*" protocols="*_3d.iso*" player="ISO_Player"/> </rules> </playercorefactory> and here is screen shot of the naming structure http://i975.photobucket.com/albums/ae237/blucmal/Untitled-1.jpg - bluray - 2012-01-09 02:54 I see why, because you need to change ([COLOR="Red"]C:\Users\Dell\AppData\Roaming\XBMC\userd ata\PlayISO.ba[/COLOR]t) in playercorefactory to the correct path on your HTPC. - bluc - 2012-01-09 03:25 changed it now the iso is not mounting. updated file <playercorefactory> <players> <player name="ISO_Player" type="ExternalPlayer" audio="false" video="false"> <filename>C:\Users\big mal\AppData\Roaming\XBMC\userdata\PlayISO.bat</filename> <args>"{1}" /fullscreen</args> <forceontop>false</forceontop> <hidexbmc>false</hidexbmc> <hidecursor>false</hidecursor> </player> </players> <rules action="prepend"> <!-- Bluray ISO --> <rule filename=".*_3d.iso*" protocols="*_3d.iso*" player="ISO_Player"/> </rules> </playercorefactory> |