Solved MPC-BE not playing as external player - Printable Version +- Kodi Community Forum (https://forum.kodi.tv) +-- Forum: Support (https://forum.kodi.tv/forumdisplay.php?fid=33) +--- Forum: General Support (https://forum.kodi.tv/forumdisplay.php?fid=111) +---- Forum: Windows (https://forum.kodi.tv/forumdisplay.php?fid=59) +---- Thread: Solved MPC-BE not playing as external player (/showthread.php?tid=379883) |
MPC-BE not playing as external player - lennie paz - 2024-12-23 I'm trying to use MPC-BE as my external player with Kodi 21.1, but when I click a movie, nothing happens. If I right click a movie and choose Play Using, MPC-BE is there as Default. I can get MPC-HC to work as an external player, but I prefer BE. Here is my playercorefactory for BE. <playercorefactory> <players> <player name="MPC-BE" type="ExternalPlayer" audio="false" video="true"> <filename>C:\Program Files\MPC-BE\mpc-be64.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|ts|avi|divx|ogm|mp4|mov|m4v|flv|m2v|mpeg|mpg|mts|m2ts|vob|bdmv|iso|mpls" player="MPC-BE"/> <rule dvdimage="true" player="MPC-BE"/> <rule dvdfile="true" player="MPC-BE"/> <rule protocols="http|https" player="MPC-BE"/> <rule protocols="daap|rtv|rtsp|rtmp|rtmpe|rtsp|mms|rtp|pvr" player="VideoPlayer"/> </rules> </playercorefactory> RE: MPC-BE not playing as external player - Rolly - 2024-12-24 Looks like you have an embedded Unicode formatting character in the filename line. U+202A delete everything between the <filename> and </filename> and manually type your filename in. Try this line as I have reformatted it without the unicode character for you: <filename>C:\Program Files\MPC-BE\mpc-be64.exe</filename> Regards RE: MPC-BE not playing as external player - lennie paz - 2024-12-24 (Yesterday, 03:05)Rolly Wrote: Looks like you have an embedded Unicode formatting character in the filename line. That worked, Thanks! MPC-BE not playing as external player - PatK - 2024-12-24 Thread marked solved. |