Kodi Community Forum
Win HOW TO - Launch MPC-HC/MPC-BE with madVR as an External Player - Printable Version

+- Kodi Community Forum (https://forum.kodi.tv)
+-- Forum: Support (https://forum.kodi.tv/forumdisplay.php?fid=33)
+--- Forum: Tips, tricks, and step by step guides (https://forum.kodi.tv/forumdisplay.php?fid=110)
+--- Thread: Win HOW TO - Launch MPC-HC/MPC-BE with madVR as an External Player (/showthread.php?tid=209596)

Pages: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22


RE: HOW TO - Launch MPC-HC/MPC-BE with madVR as an External Player - Warner306 - 2016-04-12

(2016-04-12, 02:48)nangro Wrote: i have finished reading appendix B..still confused..
sorry..im nubie..

whats the meaning of dvdplayer..is it kodi player..
so..we use 2 player, dvdplayer and mpc hc..together..
my video bumper extension is mp4,flv,vob,m2ts,mkv

how to combine dvdplayer(apendix b) and mpc hc..on coding playercorefactory
sorry..im nubie..im not understand about that..
but thanks for fast respons..i hope u can help me..

Add the rule in Appendix B to playercorefactory.xml. For this to work, you need to add the extension (DVD) to every one of your files. The exception is MPAA ratings videos, which should have its extension changed to .flv because you can't change the name.

Something like this: DTSAudioBumper (DVD).mkv


RE: HOW TO - Launch MPC-HC/MPC-BE with madVR as an External Player - apd927c - 2016-07-29

I get much worse performance with MADVR when using MPC-HC as an external player for Kodi (Jarvis 16.1).

When playing files through Windows Explorer directly to MPC-HC those same MADVR settings work fine.

Is there anything I can do to get the same performance in the former?


RE: HOW TO - Launch MPC-HC/MPC-BE with madVR as an External Player - huhn - 2016-07-29

what's your system?


RE: HOW TO - Launch MPC-HC/MPC-BE with madVR as an External Player - apd927c - 2016-07-29

(2016-07-29, 16:58)huhn Wrote: what's your system?

Its very capable, 980TI/i7 6700k at 4.6ghz, 32GB ram. The rendering time for all resolutions is well below 41 usually, however when using mpc as external player for kodi it sometimes doubles


RE: HOW TO - Launch MPC-HC/MPC-BE with madVR as an External Player - Warner306 - 2016-07-29

(2016-07-29, 17:05)apd927c Wrote:
(2016-07-29, 16:58)huhn Wrote: what's your system?

Its very capable, 980TI/i7 6700k at 4.6ghz, 32GB ram. The rendering time for all resolutions is well below 41 usually, however when using mpc as external player for kodi it sometimes doubles

Kodi and MPC-HC are completely seperate programs. When MPC-HC is opened, Kodi is simply minimized. So I don't know why one would impact the other. Try turning off madVR's fullscreen exclusive mode.


RE: HOW TO - Launch MPC-HC/MPC-BE with madVR as an External Player - apd927c - 2016-07-29

I opted to reduce settings from NNEDI3 to superxbr and now performance is the same. I prefer it this way actually, less noise from the GPU too

Thanks for your guides, they have been very enlightening


RE: HOW TO - Launch MPC-HC/MPC-BE with madVR as an External Player - razy60 - 2016-11-09

Not sure if this has been posted before but if you are using Kodi 17 from the win 10 app store then the path for playercorefactory.xml is
C:\Users\NAME\AppData\Local\Packages\XBMCFoundation.Kodi_4n2hpmxwrvr6p\LocalCache\Roaming\Kodi\userdata


RE: HOW TO - Launch MPC-HC/MPC-BE with madVR as an External Player - Warner306 - 2016-11-10

(2016-11-09, 20:43)razy60 Wrote: Not sure if this has been posted before but if you are using Kodi 17 from the win 10 app store then the path for playercorefactory.xml is
C:\Users\NAME\AppData\Local\Packages\XBMCFoundation.Kodi_4n2hpmxwrvr6p\LocalCache\Roaming\Kodi\userdata

Thanks for the info. Added to the guide.


RE: HOW TO - Launch MPC-HC/MPC-BE with madVR as an External Player - V_J_ - 2016-11-22

A another possibility for closing MPC-HC when playback stops without hotkeys... I use EventGhost to control many softwares, and it has a plugin for MPC-HC. This allows you to detect many events from MPC-HC: play, pause, stop, ... I'm still working on it, but it seems possible that you can use the detection of stop to trigger an action that closes MPC-HC. I am still looking to add the condition that it only does this when Kodi is running, not to have this behaviour when MPC-HC is used normally.


RE: HOW TO - Launch MPC-HC/MPC-BE with madVR as an External Player - KaBoS - 2016-12-31

Hello

Thank you very much

Happy New Year


I have questions

I created a playercorefactory Lines good or not ?

Code:
<playercorefactory>
<players>
<player name="MPC-HC" type="ExternalPlayer" audio="false" video="true">
<filename>C:\Program Files\MPC-HC\mpc-hc64.exe</filename>
<args>"{1}" /fullscreen /close</args>
<hidexbmc>false</hidexbmc>
<hideconsole>false</hideconsole>
<warpcursor>none</warpcursor>
<playcountminimumtime>1140</playcountminimumtime>
</player>
</players>
<rules action="prepend">
<rule filetypes="mkv|avi|divx|ogm|mp4|mov|m4v|flv|m2v|mpeg|mpg|mts|m2ts|vob|bdmv|iso" player="MPC-HC">
<rule protocols="http|https" player="MPC-HC"/>
<rule protocols="daap|rtv|rtsp|rtmp|rtmpe|rtsp|mms|rtp|pvr" player="DVDPlayer"/>
</rule>
</rules>
</playercorefactory>


<rules action="prepend">
<rule filetypes="mkv|avi|divx|ogm|mp4|mov|m4v|flv|m2v|mpeg|mpg|mts|m2ts|vob|bdmv|iso" player="MPC-HC">
<rule protocols="http|https" player="MPC-HC"/>
<rule protocols="daap|rtv|rtsp|rtmp|rtmpe|rtsp|mms|rtp|pvr" player="DVDPlayer"/>
</rule>
</rules>


<rules action="prepend">
<rule video="true" player="MPC-HC">
<rule internetstream="true" player="DVDPlayer" />
</rule>
</rules>

Is there an error or not ?? Smile

Thanks .


RE: HOW TO - Launch MPC-HC/MPC-BE with madVR as an External Player - Warner306 - 2016-12-31

(2016-12-31, 10:38)KaBoS Wrote: Hello

Thank you very much

Happy New Year


I have questions

I created a playercorefactory Lines good or not ?

Code:
<playercorefactory>
<players>
<player name="MPC-HC" type="ExternalPlayer" audio="false" video="true">
<filename>C:\Program Files\MPC-HC\mpc-hc64.exe</filename>
<args>"{1}" /fullscreen /close</args>
<hidexbmc>false</hidexbmc>
<hideconsole>false</hideconsole>
<warpcursor>none</warpcursor>
<playcountminimumtime>1140</playcountminimumtime>
</player>
</players>
<rules action="prepend">
<rule filetypes="mkv|avi|divx|ogm|mp4|mov|m4v|flv|m2v|mpeg|mpg|mts|m2ts|vob|bdmv|iso" player="MPC-HC">
<rule protocols="http|https" player="MPC-HC"/>
<rule protocols="daap|rtv|rtsp|rtmp|rtmpe|rtsp|mms|rtp|pvr" player="DVDPlayer"/>
</rule>
</rules>
</playercorefactory>


<rules action="prepend">
<rule filetypes="mkv|avi|divx|ogm|mp4|mov|m4v|flv|m2v|mpeg|mpg|mts|m2ts|vob|bdmv|iso" player="MPC-HC">
<rule protocols="http|https" player="MPC-HC"/>
<rule protocols="daap|rtv|rtsp|rtmp|rtmpe|rtsp|mms|rtp|pvr" player="DVDPlayer"/>
</rule>
</rules>


<rules action="prepend">
<rule video="true" player="MPC-HC">
<rule internetstream="true" player="DVDPlayer" />
</rule>
</rules>

Is there an error or not ?? Smile

Thanks .

You don't need to repeat the rules section three times. Why don't you just copy the playercorefactory provided in the guide? You only need the first part.


RE: HOW TO - Launch MPC-HC/MPC-BE with madVR as an External Player - KaBoS - 2017-01-01

(2016-12-31, 19:30)Warner306 Wrote:
(2016-12-31, 10:38)KaBoS Wrote:

You don't need to repeat the rules section three times. Why don't you just copy the playercorefactory provided in the guide? You only need the first part.

I'am sorry I do not understand

I think it all be copied


Thank you very much 

Happy New Year Smile


RE: HOW TO - Launch MPC-HC/MPC-BE with madVR as an External Player - Warner306 - 2017-01-01

(2017-01-01, 07:24)KaBoS Wrote:
(2016-12-31, 19:30)Warner306 Wrote:
(2016-12-31, 10:38)KaBoS Wrote:

You don't need to repeat the rules section three times. Why don't you just copy the playercorefactory provided in the guide? You only need the first part.

I'am sorry I do not understand

I think it all be copied


Thank you very much 

Happy New Year Smile

This is all you need:

<playercorefactory>
<players>
<player name="MPC-HC" type="ExternalPlayer" audio="false" video="true">
<filename>C:\Program Files\MPC-HC\mpc-hc64.exe</filename>
<args>"{1}" /fullscreen /close</args>
<hidexbmc>false</hidexbmc>
<hideconsole>false</hideconsole>
<warpcursor>none</warpcursor>
<playcountminimumtime>1140</playcountminimumtime>
</player>
</players>
<rules action="prepend">
<rule filetypes="mkv|avi|divx|ogm|mp4|mov|m4v|flv|m2v|mpeg|mpg|mts|m2ts|vob|bdmv|iso" player="MPC-HC">
<rule protocols="http|https" player="MPC-HC"/>
<rule protocols="daap|rtv|rtsp|rtmp|rtmpe|rtsp|mms|rtp|pvr" player="DVDPlayer"/>
</rule>
</rules>
</playercorefactory>


RE: HOW TO - Launch MPC-HC/MPC-BE with madVR as an External Player - KaBoS - 2017-01-02

(2017-01-01, 19:11)Warner306 Wrote:
(2017-01-01, 07:24)KaBoS Wrote:
(2016-12-31, 19:30)Warner306 Wrote: You don't need to repeat the rules section three times. Why don't you just copy the playercorefactory provided in the guide? You only need the first part.

This is all you need:

<playercorefactory>
<players>
<player name="MPC-HC" type="ExternalPlayer" audio="false" video="true">
<filename>C:\Program Files\MPC-HC\mpc-hc64.exe</filename>
<args>"{1}" /fullscreen /close</args>
<hidexbmc>false</hidexbmc>
<hideconsole>false</hideconsole>
<warpcursor>none</warpcursor>
<playcountminimumtime>1140</playcountminimumtime>
</player>
</players>
<rules action="prepend">
<rule filetypes="mkv|avi|divx|ogm|mp4|mov|m4v|flv|m2v|mpeg|mpg|mts|m2ts|vob|bdmv|iso" player="MPC-HC">
<rule protocols="http|https" player="MPC-HC"/>
<rule protocols="daap|rtv|rtsp|rtmp|rtmpe|rtsp|mms|rtp|pvr" player="DVDPlayer"/>
</rule>
</rules>
</playercorefactory>
works Good Smile
I Moved to Windows After many years With Android box (big difference) So I'm a little confused

Thank you very much .


RE: HOW TO - Launch MPC-HC/MPC-BE with madVR as an External Player - ser_renely - 2017-01-04

Do you need to use the 64 bit version of MPC?

Ahhh finally got it to work...sort of Big Grin


great guide, ty