XBMC with Media Player Classic Home Cinema

1

Does anybody have an example of advancedsettings.xml configuration in XBMC to have it use Media Player Classic Home Cinema as an external player for all types of video files?

Tudor Olariu

Posted 2009-09-02T07:54:23.057

Reputation: 153

Answers

0

This link has the answer, and the forum thread is also useful.

Basically, an example with Media Player Classic Home Cinema:

<playercorefactory>
  <players>
    <player name="MPC-HC" type="ExternalPlayer" audio="false" video="true">
      <filename>C:\Program Files\MPC-HC\mplayerc.exe</filename>
      <args>/fullscreen /close</args>
      <hidexbmc>false</hidexbmc>
      <hideconsole>false</hideconsole>
      <hidecursor>false</hidecursor>
    </player>
  </players>
  <rules action="prepend">
    <rule filetypes="mkv" filename=".*720p.*" player="MPC-HC"/>
  </rules>
</playercorefactory>

Tudor Olariu

Posted 2009-09-02T07:54:23.057

Reputation: 153