Playercorefactory for music videos
#1
I am trying to get music videos to play in an external window so I have a file called playercorefactory.xml in C:\Documents and Settings\Dell\Application Data\XBMC\userdata

PHP Code:
<playercorefactory>
<
players>
   <
player name="wmplayer" type="ExternalPlayer" audio="true" video="true">
     <
filename>C:\Program Files\Windows Media Player\wmplayer.exe</filename>
     <
args>"{1}" /fullscreen</args>
     <
hidexbmc>false</hidexbmc>
     <
hideconsole>false</hideconsole>
     <
warpcursor>none</warpcursor>
   </
player>
 </
players>
 <
rules action="prepend">
<
rule filetypes="MPG" player="wmplayer"
   
</rules
This doesn't seem to work ( doesn't even open wmplayer Huh ).
The music video file has .MPG as the file extension (have tried .mpg and .MPG)

Can someone please point out where I have gone wrong?
Thanks Big Grin
Reply
#2
1) On row 4 you don't have any backslashes in the path
2) On row 12 you're missing a "/>" at the end of the line
3) You're missing the closing </playercorefactory> after the last line
Reply
#3
(2012-04-22, 01:10)sialivi Wrote: 1) On row 4 you don't have any backslashes in the path
2) On row 12 you're missing a "/>" at the end of the line
3) You're missing the closing </playercorefactory> after the last line
Thanks now I have... but still not working Sad
Code:
<playercorefactory>
<players>
   <player name="wmplayer" type="ExternalPlayer" audio="true" video="true">
     <filename>C:\Program Files\Windows Media Player\wmplayer.exe</filename>
     <args>"{1}" /fullscreen</args>
     <hidexbmc>false</hidexbmc>
     <hideconsole>false</hideconsole>
     <warpcursor>none</warpcursor>
   </player>
</players>
<rules action="prepend">
<rule filetypes="MPG" player="wmplayer"/>
   </rules>
</playercorefactory>
Reply
#4
@backspace-

Download this "Playercorefactory.xml" and save it to "C:\Users\xxxxx\AppData\Roaming\XBMC\userdata" folder......
>Alienware X51- do it all HTPC
>Simplify XBMC configurations
>HOW-TO Bitstreaming using XBMC
I refused to watch movie without bitstreaming HD audio!
Reply
#5
Worked like a treat thanks Smile
Reply
#6
(2012-04-22, 05:30)backspace Wrote: Worked like a treat thanks Smile
Congrat....Nod

If you want to setup external player for other file, you can check my signature for guide...

>Alienware X51- do it all HTPC
>Simplify XBMC configurations
>HOW-TO Bitstreaming using XBMC
I refused to watch movie without bitstreaming HD audio!
Reply

Logout Mark Read Team Forum Stats Members Help
Playercorefactory for music videos0