XMLsetting script or external player
#1
does anyone have a script that simply allows me to right click a movie and have mpc classic play it? all the guides I can find have it where it automatically chooses mpc.. I would prefer the other way around and don't know how to do it.
Reply
#2
If the guides you've found involve creating a playercorefactory.xml, then basically follow them, but don't bother to make any <rules>.
Any external player you define will be available from the context menu under the "Play Using..." option.
Reply
#3
Something like:

Code:
<playercorefactory>
    <player name="MPC-HC" type="ExternalPlayer" audio="false" video="true">
      <filename>C:\Program Files\Media Player Classic - Home Cinema\mpc-hc64.exe</filename>
      <args>"{1}" /fullscreen /close</args>
      <hidexbmc>false</hidexbmc>
      <hideconsole>false</hideconsole>
      <hidecursor>false</hidecursor>
    </player>
  </players>

  <rules action="prepend">
  </rules>
</playercorefactory>

Because there are no rules MPC-HC won't be used automatically, but it will appear as an option under "Play using...".

JR
Reply

Logout Mark Read Team Forum Stats Members Help
XMLsetting script or external player0