Win Kodi external player issue SOLVED
#1
SOLVED!

Hi...need some help pls.

was running win 8 (then auto updated to 8.1) and xbmc with potplayer as an external player. Win 8.1 kept f^&*&ing up my pc so reverted to win 8...in doing so have had to resetup xbmc. So now using latest Kodi and can not get external player to function. Pls help.

This is my playfactory code which worked previously:

<playercorefactory>
<players>
<player name="PotPlayer" type="ExternalPlayer"
<filename>C:\Program Files (x86)\Daum\PotPlayer\PotPlayerMini.exe</filename>
<args>"{1}" /fullscreen /close</args>
<hidexbmc>false</hidexbmc>
<hideconsole>false</hideconsole>
<warpcursor>none</warpcursor>
</player>
</players>
<rules action="prepend"></rules>
</playercorefactory>

I have also tried placing the xml file in different locations but to no avail...plus tried changing hidexmbc to hidekodi.

Thanks
#2
Because you haven't defined rules for file types, you can use the c context menu to choose a player.
"C" context menu>play using>choose pot player

Unless you specify file type you will need to use option c
#3
Ok i hadnt had to use that before, where abouts in the code do i place it and what it the line exactly?

Thanks
#4
See http://kodi.wiki/view/External_players

I've listed my playercorefactory.xml below as well.

Code:
<playercorefactory>
    <players>
        <player name="ISO_BDMV_Player" type="ExternalPlayer" audio="false" video="true">
            <filename>C:\Users\Streacom\AppData\Roaming\Kodi\userdata\PlayISO.bat</filename>
            <args>"{1}"</args>
            <hideKodi>True</hideKodi>
                        <hideconsole>true</hideconsole>
                        <forceontop>false</forceontop>

        </player>
        <player name="Disc_Player" type="ExternalPlayer" audio="false" video="true">
            <filename>C:\Users\Streacom\AppData\Roaming\Kodi\userdata\PlayDisc.bat</filename>
            <args>"{1}"</args>
            <hideKodi>True</hideKodi>
                        <hideconsole>true</hideconsole>
                        <forceontop>false</forceontop>

                </player>
        <player name="Universal_Player" type="ExternalPlayer" audio="false" video="true">
            <filename>C:\Program Files (x86)\ArcSoft\TotalMedia Theatre 6\uMCEPlayer6.exe</filename>
            <args>"{1}"</args>
            <hideKodi>True</hideKodi>
                        <hideconsole>true</hideconsole>
                        <forceontop>false</forceontop>

                                                          
        </player>
        </players>
        <rules action="prepend">
        <!-- Bluray ISO/BDMV -->
        <rule filetypes="iso|bdmv|mpls" player="ISO_BDMV_Player"/>
        <!-- Multiple files -->
        <rule filetypes="m2ts|ts" player="Universal_Player"/>    
        <rule filename=".*3D.*" player="Universal_Player"/>    
                <!-- Bluray Disc -->
        <rule filetypes="bd|ifo" player="Disc_Player"/>
                
             
</rules>
</playercorefactory>



In your case you'd need to add a line something like <rule filetypes="ext" player="ExternalPlayer"> , where "ext" is the extension of the files that you want played by the external player as compared to the internal DSPlayer
#5
See here "|" denotes add file extension:

Code:
<rules action="prepend">
   <rule filetypes="mkv|mp4" player="PotPlayer"/>
</rules>

or if you wanted to specify file with name tag: 720p

Code:
<rules action="prepend">
   <rule filetypes="mkv" filename=".*720p.*" player="PotPlayer"/>
</rules>
#6
ok...ive tried the following:
<playercorefactory>
<players>
<player name="PotPlayer" type="ExternalPlayer" audio="false" video="true">
<filename>C:\Program Files (x86)\Daum\PotPlayer\PotPlayerMini.exe</filename>
<args>"{1}" /fullscreen /close</args>
<hidexbmc>false</hidexbmc>
<hideconsole>false</hideconsole>
<warpcursor>none</warpcursor>
</player>
</players>
<rules action="prepend">
<rule filetypes="mkv|avi|mp4" player="PotPlayer"/>
</rules>
</playercorefactory>


still no luck.....ps just a reminder....this all worked before without expressing any rules
#7
spandex - can't see anything wrong with either of your playercorefactory settings - though you don't need to try them in multiple locations, it should be placed in the C:\Users\Username\AppData\Roaming\Kodi\userdata. Anywhere else and it either won't read it or if placed in the userdata of the root program folder, will be overwritten on each new installation.

Make sure you check that the path to your external player is correct. If you still aren't able to achieve playback from the external player - submit a debug log, which should show where the breakdown is.
#8
This is the debug log:
19:07:38 T:3452 NOTICE: special://profile/ is mapped to: special://masterprofile/
19:07:38 T:3452 NOTICE: -----------------------------------------------------------------------
19:07:38 T:3452 NOTICE: Starting Kodi (14.2 Git:20150326-7cc53a9). Platform: Windows NT x86 32-bit
19:07:38 T:3452 NOTICE: Using Release Kodi x32 build
19:07:38 T:3452 NOTICE: Kodi compiled Mar 26 2015 by MSVC 180030723 for Windows NT x86 32-bit version 6.0 (0x06000000)
19:07:38 T:3452 NOTICE: Running on Hewlett-Packard 500-002a with Windows 8, kernel: Windows NT x86 64-bit version 6.2
19:07:38 T:3452 NOTICE: Host CPU: Intel® Core™ i5-3470 CPU @ 3.20GHz, 4 cores available
19:07:38 T:3452 NOTICE: Desktop Resolution: 1776x1000 32Bit at 59Hz
19:07:38 T:3452 NOTICE: Running with restricted rights
19:07:38 T:3452 NOTICE: Aero is enabled
19:07:38 T:3452 NOTICE: special://xbmc/ is mapped to: C:\Program Files (x86)\Kodi
19:07:38 T:3452 NOTICE: special://xbmcbin/ is mapped to: C:\Program Files (x86)\Kodi
19:07:38 T:3452 NOTICE: special://masterprofile/ is mapped to: C:\Users\D\AppData\Roaming\Kodi\userdata
19:07:38 T:3452 NOTICE: special://home/ is mapped to: C:\Users\D\AppData\Roaming\Kodi\
19:07:38 T:3452 NOTICE: special://temp/ is mapped to: C:\Users\D\AppData\Roaming\Kodi\cache
19:07:38 T:3452 NOTICE: The executable running is: C:\Program Files (x86)\Kodi\Kodi.exe
19:07:38 T:3452 NOTICE: Local hostname: DSP
19:07:38 T:3452 NOTICE: Log File is located: C:\Users\D\AppData\Roaming\Kodi\kodi.log
19:07:38 T:3452 NOTICE: -----------------------------------------------------------------------
19:07:39 T:3452 NOTICE: load settings...
19:07:39 T:3452 WARNING: CSettingString: unknown options filler "timezonecountries" of "locale.timezonecountry"
19:07:39 T:3452 WARNING: CSettingString: unknown options filler "timezones" of "locale.timezone"
19:07:39 T:3452 NOTICE: No settings file to load (special://xbmc/system/advancedsettings.xml)
19:07:39 T:3452 NOTICE: No settings file to load (special://masterprofile/advancedsettings.xml)
19:07:39 T:3452 NOTICE: Default DVD Player: dvdplayer
19:07:39 T:3452 NOTICE: Default Video Player: dvdplayer
19:07:39 T:3452 NOTICE: Default Audio Player: paplayer
19:07:39 T:3452 NOTICE: Disabled debug logging due to GUI setting. Level 0.
19:07:39 T:3452 NOTICE: Log level changed to "LOG_LEVEL_NORMAL"
19:07:39 T:3452 NOTICE: CMediaSourceSettings: loading media sources from special://masterprofile/sources.xml
19:07:39 T:3452 NOTICE: Loading player core factory settings from special://xbmc/system/playercorefactory.xml.
19:07:39 T:3452 NOTICE: special://xbmc/system/playercorefactory.xml does not exist. Skipping.
19:07:39 T:3452 NOTICE: Loading player core factory settings from special://profile/playercorefactory.xml.
19:07:39 T:3452 ERROR: Error loading special://profile/playercorefactory.xml, Line 4 (Error reading Attributes.)
19:07:39 T:3252 NOTICE: Thread ActiveAE start, auto delete: false
19:07:39 T:3820 NOTICE: Thread AESink start, auto delete: false
19:07:39 T:3252 NOTICE: CAESinkWASAPI::EnumerateDevicesEx: data format "AE_FMT_AAC" on device "1 - Panasonic-TV (AMD High Definition Audio Device)" seems to be not supported.
19:07:39 T:3252 NOTICE: Found 2 Lists of Devices
19:07:39 T:3252 NOTICE: Enumerated DIRECTSOUND devices:
19:07:39 T:3252 NOTICE: Device 1
19:07:39 T:3252 NOTICE: m_deviceName : {C217B888-D873-4795-873C-ED1421C9082D}
19:07:39 T:3252 NOTICE: m_displayName : HDMI - 1 - Panasonic-TV (AMD High Definition Audio Device)
19:07:39 T:3252 NOTICE: m_displayNameExtra: DIRECTSOUND: 1 - Panasonic-TV (AMD High Definition Audio Device)
19:07:39 T:3252 NOTICE: m_deviceType : AE_DEVTYPE_HDMI
19:07:39 T:3252 NOTICE: m_channels : FL,FR
19:07:39 T:3252 NOTICE: m_sampleRates : 48000
19:07:39 T:3252 NOTICE: m_dataFormats : AE_FMT_FLOAT,AE_FMT_AC3,AE_FMT_DTS
19:07:39 T:3252 NOTICE: Device 2
19:07:39 T:3252 NOTICE: m_deviceName : default
19:07:39 T:3252 NOTICE: m_displayName : default
19:07:39 T:3252 NOTICE: m_displayNameExtra:
19:07:39 T:3252 NOTICE: m_deviceType : AE_DEVTYPE_HDMI
19:07:39 T:3252 NOTICE: m_channels : FL,FR
19:07:39 T:3252 NOTICE: m_sampleRates : 48000
19:07:39 T:3252 NOTICE: m_dataFormats : AE_FMT_FLOAT,AE_FMT_AC3,AE_FMT_DTS
19:07:40 T:3252 NOTICE: Enumerated WASAPI devices:
19:07:40 T:3252 NOTICE: Device 1
19:07:40 T:3252 NOTICE: m_deviceName : {C217B888-D873-4795-873C-ED1421C9082D}
19:07:40 T:3252 NOTICE: m_displayName : HDMI - 1 - Panasonic-TV (AMD High Definition Audio Device)
19:07:40 T:3252 NOTICE: m_displayNameExtra: WASAPI: 1 - Panasonic-TV (AMD High Definition Audio Device)
19:07:40 T:3252 NOTICE: m_deviceType : AE_DEVTYPE_HDMI
19:07:40 T:3252 NOTICE: m_channels : FL,FR,FC,LFE,SL,SR,BL,BR
19:07:40 T:3252 NOTICE: m_sampleRates : 192000,176400,96000,88200,48000,44100,32000
19:07:40 T:3252 NOTICE: m_dataFormats : AE_FMT_DTSHD,AE_FMT_TRUEHD,AE_FMT_EAC3,AE_FMT_DTS,AE_FMT_AC3,AE_FMT_AAC,AE_FMT_S24NE4MSB,AE_FMT_S16NE,AE_FMT_S16LE,AE_FMT_S16BE,AE_FMT_LPCM
19:07:40 T:3252 NOTICE: Device 2
19:07:40 T:3252 NOTICE: m_deviceName : default
19:07:40 T:3252 NOTICE: m_displayName : default
19:07:40 T:3252 NOTICE: m_displayNameExtra:
19:07:40 T:3252 NOTICE: m_deviceType : AE_DEVTYPE_HDMI
19:07:40 T:3252 NOTICE: m_channels : FL,FR,FC,LFE,SL,SR,BL,BR
19:07:40 T:3252 NOTICE: m_sampleRates : 192000,176400,96000,88200,48000,44100,32000
19:07:40 T:3252 NOTICE: m_dataFormats : AE_FMT_DTSHD,AE_FMT_TRUEHD,AE_FMT_EAC3,AE_FMT_DTS,AE_FMT_AC3,AE_FMT_AAC,AE_FMT_S24NE4MSB,AE_FMT_S16NE,AE_FMT_S16LE,AE_FMT_S16BE,AE_FMT_LPCM
19:07:40 T:3452 NOTICE: Running database version Addons16
19:07:40 T:3452 NOTICE: ADDONS: Using repository repository.xbmc.org
19:07:40 T:4656 NOTICE: Thread RemoteControl start, auto delete: false
19:07:40 T:3932 NOTICE: Thread PeripBusCEC start, auto delete: false
19:07:40 T:224 NOTICE: Thread PeripBusUSB start, auto delete: false
19:07:40 T:3352 NOTICE: Thread JobWorker start, auto delete: true
19:07:40 T:3452 NOTICE: Found screen: Generic PnP Monitor on AMD Radeon HD 8570, adapter 0.
19:07:40 T:3452 NOTICE: Primary mode: 1776x1000@ 59.94 - Full Screen
19:07:40 T:3452 NOTICE: Additional mode: 640x480@ 23.98 - Full Screen
19:07:40 T:3452 NOTICE: Additional mode: 640x480@ 24.00 - Full Screen
19:07:40 T:3452 NOTICE: Additional mode: 640x480@ 23.98 - Full Screen
19:07:40 T:3452 NOTICE: Additional mode: 640x480@ 24.00 - Full Screen
19:07:40 T:3452 NOTICE: Additional mode: 640x480@ 23.98 - Full Screen
19:07:41 T:3452 NOTICE: Additional mode: 640x480@ 24.00 - Full Screen
19:07:41 T:3452 NOTICE: Additional mode: 640x480@ 50.00 - Full Screen
19:07:41 T:3452 NOTICE: Previous line repeats 2 times.
19:07:41 T:3452 NOTICE: Additional mode: 640x480@ 59.94 - Full Screen
19:07:41 T:3452 NOTICE: Additional mode: 640x480@ 60.00 - Full Screen
19:07:41 T:3452 NOTICE: Additional mode: 720x480@ 23.98 - Full Screen
19:07:41 T:3452 NOTICE: Additional mode: 720x480@ 24.00 - Full Screen
19:07:41 T:3452 NOTICE: Additional mode: 720x480@ 23.98 - Full Screen
19:07:41 T:3452 NOTICE: Additional mode: 720x480@ 24.00 - Full Screen
19:07:41 T:3452 NOTICE: Additional mode: 720x480@ 23.98 - Full Screen
19:07:41 T:3452 NOTICE: Additional mode: 720x480@ 24.00 - Full Screen
19:07:41 T:3452 NOTICE: Additional mode: 720x480@ 50.00 - Full Screen
19:07:41 T:3452 NOTICE: Previous line repeats 2 times.
19:07:41 T:3452 NOTICE: Additional mode: 720x480@ 59.94 - Full Screen
19:07:41 T:3452 NOTICE: Additional mode: 720x480@ 60.00 - Full Screen
19:07:41 T:3452 NOTICE: Additional mode: 720x480@ 29.97i - Full Screen
19:07:41 T:3452 NOTICE: Additional mode: 720x480@ 30.00i - Full Screen
19:07:41 T:3452 NOTICE: Additional mode: 720x480@ 29.97i - Full Screen
19:07:41 T:3452 NOTICE: Additional mode: 720x480@ 30.00i - Full Screen
19:07:41 T:3452 NOTICE: Additional mode: 720x480@ 29.97i - Full Screen
19:07:41 T:3452 NOTICE: Additional mode: 720x480@ 30.00i - Full Screen
19:07:41 T:3452 NOTICE: Additional mode: 720x576@ 23.98 - Full Screen
19:07:41 T:3452 NOTICE: Additional mode: 720x576@ 24.00 - Full Screen
19:07:41 T:3452 NOTICE: Additional mode: 720x576@ 23.98 - Full Screen
19:07:41 T:3452 NOTICE: Additional mode: 720x576@ 24.00 - Full Screen
19:07:41 T:3452 NOTICE: Additional mode: 720x576@ 23.98 - Full Screen
19:07:41 T:3452 NOTICE: Additional mode: 720x576@ 24.00 - Full Screen
19:07:41 T:3452 NOTICE: Additional mode: 720x576@ 50.00 - Full Screen
19:07:41 T:3452 NOTICE: Additional mode: 720x576@ 59.94 - Full Screen
19:07:41 T:3452 NOTICE: Additional mode: 720x576@ 60.00 - Full Screen
19:07:41 T:3452 NOTICE: Additional mode: 720x576@ 59.94 - Full Screen
19:07:41 T:3452 NOTICE: Additional mode: 720x576@ 60.00 - Full Screen
19:07:41 T:3452 NOTICE: Additional mode: 720x576@ 59.94 - Full Screen
19:07:41 T:3452 NOTICE: Additional mode: 720x576@ 60.00 - Full Screen
19:07:41 T:3452 NOTICE: Additional mode: 720x576@ 25.00i - Full Screen
19:07:41 T:3452 NOTICE: Previous line repeats 2 times.
19:07:42 T:3452 NOTICE: Additional mode: 800x600@ 50.00 - Full Screen
19:07:42 T:3452 NOTICE: Previous line repeats 2 times.
19:07:42 T:3452 NOTICE: Additional mode: 800x600@ 59.94 - Full Screen
19:07:42 T:3452 NOTICE: Additional mode: 800x600@ 60.00 - Full Screen
19:07:42 T:3452 NOTICE: Additional mode: 800x600@ 59.94 - Full Screen
19:07:42 T:3452 NOTICE: Additional mode: 800x600@ 60.00 - Full Screen
19:07:42 T:3452 NOTICE: Additional mode: 800x600@ 59.94 - Full Screen
19:07:42 T:3452 NOTICE: Additional mode: 800x600@ 60.00 - Full Screen
19:07:42 T:3452 NOTICE: Additional mode: 1024x768@ 24.00 - Full Screen
19:07:42 T:3452 NOTICE: Previous line repeats 2 times.
19:07:42 T:3452 NOTICE: Additional mode: 1024x768@ 50.00 - Full Screen
19:07:42 T:3452 NOTICE: Previous line repeats 2 times.
19:07:42 T:3452 NOTICE: Additional mode: 1024x768@ 59.94 - Full Screen
19:07:42 T:3452 NOTICE: Additional mode: 1024x768@ 60.00 - Full Screen
19:07:42 T:3452 NOTICE: Additional mode: 1024x768@ 59.94 - Full Screen
19:07:42 T:3452 NOTICE: Additional mode: 1024x768@ 60.00 - Full Screen
19:07:42 T:3452 NOTICE: Additional mode: 1024x768@ 59.94 - Full Screen
19:07:42 T:3452 NOTICE: Additional mode: 1024x768@ 60.00 - Full Screen
19:07:42 T:3452 NOTICE: Additional mode: 1152x648@ 50.00 - Full Screen
19:07:42 T:3452 NOTICE: Additional mode: 1152x648@ 59.94 - Full Screen
19:07:42 T:3452 NOTICE: Additional mode: 1152x648@ 60.00 - Full Screen
19:07:42 T:3452 NOTICE: Additional mode: 1280x720@ 23.98 - Full Screen
19:07:42 T:3452 NOTICE: Additional mode: 1280x720@ 24.00 - Full Screen
19:07:42 T:3452 NOTICE: Additional mode: 1280x720@ 23.98 - Full Screen
19:07:42 T:3452 NOTICE: Additional mode: 1280x720@ 24.00 - Full Screen
19:07:42 T:3452 NOTICE: Additional mode: 1280x720@ 23.98 - Full Screen
19:07:42 T:3452 NOTICE: Additional mode: 1280x720@ 24.00 - Full Screen
19:07:42 T:3452 NOTICE: Additional mode: 1280x720@ 50.00 - Full Screen
19:07:42 T:3452 NOTICE: Additional mode: 1280x720@ 59.94 - Full Screen
19:07:42 T:3452 NOTICE: Additional mode: 1280x720@ 60.00 - Full Screen
19:07:42 T:3452 NOTICE: Additional mode: 1280x768@ 24.00 - Full Screen
19:07:42 T:3452 NOTICE: Previous line repeats 2 times.
19:07:42 T:3452 NOTICE: Additional mode: 1280x768@ 50.00 - Full Screen
19:07:42 T:3452 NOTICE: Previous line repeats 2 times.
19:07:42 T:3452 NOTICE: Additional mode: 1280x768@ 59.94 - Full Screen
19:07:42 T:3452 NOTICE: Additional mode: 1280x768@ 60.00 - Full Screen
19:07:42 T:3452 NOTICE: Additional mode: 1280x768@ 59.94 - Full Screen
19:07:42 T:3452 NOTICE: Additional mode: 1280x768@ 60.00 - Full Screen
19:07:42 T:3452 NOTICE: Additional mode: 1280x768@ 59.94 - Full Screen
19:07:42 T:3452 NOTICE: Additional mode: 1280x768@ 60.00 - Full Screen
19:07:42 T:3452 NOTICE: Additional mode: 1280x960@ 24.00 - Full Screen
19:07:42 T:3452 NOTICE: Previous line repeats 2 times.
19:07:42 T:3452 NOTICE: Additional mode: 1280x960@ 50.00 - Full Screen
19:07:42 T:3452 NOTICE: Previous line repeats 2 times.
19:07:42 T:3452 NOTICE: Additional mode: 1280x960@ 59.94 - Full Screen
19:07:42 T:3452 NOTICE: Additional mode: 1280x960@ 60.00 - Full Screen
19:07:42 T:3452 NOTICE: Additional mode: 1280x960@ 59.94 - Full Screen
19:07:42 T:3452 NOTICE: Additional mode: 1280x960@ 60.00 - Full Screen
19:07:42 T:3452 NOTICE: Additional mode: 1280x960@ 59.94 - Full Screen
19:07:42 T:3452 NOTICE: Additional mode: 1280x960@ 60.00 - Full Screen
19:07:42 T:3452 NOTICE: Additional mode: 1280x1024@ 23.98 - Full Screen
19:07:42 T:3452 NOTICE: Additional mode: 1280x1024@ 24.00 - Full Screen
19:07:42 T:3452 NOTICE: Additional mode: 1280x1024@ 23.98 - Full Screen
19:07:42 T:3452 NOTICE: Additional mode: 1280x1024@ 24.00 - Full Screen
19:07:42 T:3452 NOTICE: Additional mode: 1280x1024@ 23.98 - Full Screen
19:07:42 T:3452 NOTICE: Additional mode: 1280x1024@ 24.00 - Full Screen
19:07:42 T:3452 NOTICE: Additional mode: 1280x1024@ 50.00 - Full Screen
19:07:42 T:3452 NOTICE: Previous line repeats 2 times.
19:07:42 T:3452 NOTICE: Additional mode: 1280x1024@ 59.94 - Full Screen
19:07:42 T:3452 NOTICE: Additional mode: 1280x1024@ 60.00 - Full Screen
19:07:42 T:3452 NOTICE: Additional mode: 1280x1024@ 59.94 - Full Screen
19:07:42 T:3452 NOTICE: Additional mode: 1280x1024@ 60.00 - Full Screen
19:07:42 T:3452 NOTICE: Additional mode: 1280x1024@ 59.94 - Full Screen
19:07:42 T:3452 NOTICE: Additional mode: 1280x1024@ 60.00 - Full Screen
19:07:42 T:3452 NOTICE: Additional mode: 1600x900@ 24.00 - Full Screen
19:07:42 T:3452 NOTICE: Previous line repeats 2 times.
19:07:42 T:3452 NOTICE: Additional mode: 1600x900@ 50.00 - Full Screen
19:07:42 T:3452 NOTICE: Previous line repeats 2 times.
19:07:42 T:3452 NOTICE: Additional mode: 1600x900@ 59.94 - Full Screen
19:07:42 T:3452 NOTICE: Additional mode: 1600x900@ 60.00 - Full Screen
19:07:43 T:3452 NOTICE: Additional mode: 1600x900@ 59.94 - Full Screen
19:07:43 T:3452 NOTICE: Additional mode: 1600x900@ 60.00 - Full Screen
19:07:43 T:3452 NOTICE: Additional mode: 1600x900@ 59.94 - Full Screen
19:07:43 T:3452 NOTICE: Additional mode: 1600x900@ 60.00 - Full Screen
19:07:43 T:3452 NOTICE: Additional mode: 1680x1050@ 23.98 - Full Screen
19:07:43 T:3452 NOTICE: Additional mode: 1680x1050@ 24.00 - Full Screen
19:07:43 T:3452 NOTICE: Additional mode: 1680x1050@ 23.98 - Full Screen
19:07:43 T:3452 NOTICE: Additional mode: 1680x1050@ 24.00 - Full Screen
19:07:43 T:3452 NOTICE: Additional mode: 1680x1050@ 23.98 - Full Screen
19:07:43 T:3452 NOTICE: Additional mode: 1680x1050@ 24.00 - Full Screen
19:07:43 T:3452 NOTICE: Additional mode: 1680x1050@ 50.00 - Full Screen
19:07:43 T:3452 NOTICE: Previous line repeats 2 times.
19:07:43 T:3452 NOTICE: Additional mode: 1680x1050@ 59.94 - Full Screen
19:07:43 T:3452 NOTICE: Additional mode: 1680x1050@ 60.00 - Full Screen
19:07:43 T:3452 NOTICE: Additional mode: 1680x1050@ 59.94 - Full Screen
19:07:43 T:3452 NOTICE: Additional mode: 1680x1050@ 60.00 - Full Screen
19:07:43 T:3452 NOTICE: Additional mode: 1680x1050@ 59.94 - Full Screen
19:07:43 T:3452 NOTICE: Additional mode: 1680x1050@ 60.00 - Full Screen
19:07:43 T:3452 NOTICE: Additional mode: 1776x1000@ 24.00 - Full Screen
19:07:43 T:3452 NOTICE: Additional mode: 1776x1000@ 50.00 - Full Screen
19:07:43 T:3452 NOTICE: Additional mode: 1776x1000@ 59.94 - Full Screen
19:07:43 T:3452 NOTICE: Additional mode: 1776x1000@ 60.00 - Full Screen
19:07:43 T:3452 NOTICE: Additional mode: 1776x1000@ 25.00i - Full Screen
19:07:43 T:3452 NOTICE: Additional mode: 1776x1000@ 29.97i - Full Screen
19:07:43 T:3452 NOTICE: Additional mode: 1776x1000@ 30.00i - Full Screen
19:07:43 T:3452 NOTICE: Additional mode: 1920x1080@ 23.98 - Full Screen
19:07:43 T:3452 NOTICE: Additional mode: 1920x1080@ 24.00 - Full Screen
19:07:43 T:3452 NOTICE: Additional mode: 1920x1080@ 50.00 - Full Screen
19:07:43 T:3452 NOTICE: Additional mode: 1920x1080@ 59.94 - Full Screen
19:07:43 T:3452 NOTICE: Additional mode: 1920x1080@ 60.00 - Full Screen
19:07:43 T:3452 NOTICE: Additional mode: 1920x1080@ 25.00i - Full Screen
19:07:43 T:3452 NOTICE: Additional mode: 1920x1080@ 29.97i - Full Screen
19:07:43 T:3452 NOTICE: Additional mode: 1920x1080@ 30.00i - Full Screen
19:07:43 T:3452 NOTICE: Checking resolution 15
19:07:44 T:3452 NOTICE: Running database version Addons16
19:07:44 T:3452 NOTICE: Running database version ViewModes6
19:07:44 T:3452 NOTICE: Running database version Textures13
19:07:44 T:3452 NOTICE: Running database version MyMusic48
19:07:44 T:3452 NOTICE: Running database version MyVideos90
19:07:44 T:3452 NOTICE: Running database version TV26
19:07:44 T:3452 NOTICE: Running database version Epg8
19:07:45 T:3452 WARNING: JSONRPC: Could not parse type "PVR.Details.Channel"
19:07:45 T:3452 WARNING: JSONRPC: Could not parse type "PVR.Details.ChannelGroup.Extended"
19:07:45 T:3452 WARNING: JSONRPC: Could not parse type "GUI.Property.Value"
19:07:45 T:3452 WARNING: JSONRPC: Could not parse type "Setting.Details.SettingList"
19:07:45 T:4168 NOTICE: Thread LanguageInvoker start, auto delete: false
19:07:45 T:3452 NOTICE: Previous line repeats 2 times.
19:07:45 T:3452 NOTICE: initialize done
19:07:45 T:2392 NOTICE: Thread LanguageInvoker start, auto delete: false
19:07:45 T:3452 NOTICE: Running the application...
19:07:45 T:3452 NOTICE: ES: Starting event server
19:07:45 T:1196 NOTICE: Thread EventServer start, auto delete: false
19:07:45 T:1384 NOTICE: Thread TCPServer start, auto delete: false
19:07:45 T:1196 NOTICE: ES: Starting UDP Event server on 0.0.0.0:9777
19:07:45 T:1196 NOTICE: UDP: Listening on port 9777
19:07:46 T:4168 NOTICE: -->Python Interpreter Initialized<--
19:07:50 T:2392 NOTICE: Previous line repeats 3 times.
19:07:50 T:2392 NOTICE: StorageServer Module loaded RUN
19:07:50 T:2392 NOTICE: StorageClient-2.5.4 Starting server
19:07:52 T:2180 NOTICE: Thread RSSReader start, auto delete: false
19:07:52 T:3936 NOTICE: script.tv.show.next.aired: ### TV Show - Next Aired starting background proc (6.0.13)
19:07:53 T:4752 NOTICE: Thread JobWorker start, auto delete: true
19:07:56 T:4076 NOTICE: Thread BackgroundLoader start, auto delete: false
19:07:59 T:4752 ERROR: CDVDDemuxFFmpeg::Open - Error, could not open file G:\Movies\Drama\Winters Bone.avi
19:08:00 T:3352 ERROR: CDVDDemuxFFmpeg::Open - Error, could not open file G:\Movies\TV Docos\Star Trek Docos\Make It So.avi
19:08:01 T:3452 WARNING: CPlayerCoreFactory::GetPlayerCore(videodefaultplayer): no such core: dvdplayer
19:08:01 T:3452 ERROR: Error creating player for item G:\Movies\Denzel Washington\2 Guns.mp4 (File doesn't exist?)
19:08:01 T:3452 ERROR: Playlist Player: skipping unplayable item: 0, path [G:\Movies\Denzel Washington\2 Guns.mp4]
19:08:01 T:412 NOTICE: Thread BackgroundLoader start, auto delete: false
19:08:02 T:3352 ERROR: CDVDDemuxFFmpeg::Open - Error, could not open file G:\Movies\TV Docos\Star Trek Docos\Make It So.avi
19:08:03 T:3352 ERROR: CDVDDemuxFFmpeg::Open - Error, could not open file G:\Movies\Drama\Winters Bone.avi
19:08:10 T:3452 WARNING: CPlayerCoreFactory::GetPlayerCore(videodefaultplayer): no such core: dvdplayer
19:08:10 T:3452 ERROR: Error creating player for item G:\Movies\Denzel Washington\2 Guns.mp4 (File doesn't exist?)
19:08:10 T:3452 ERROR: Playlist Player: skipping unplayable item: 0, path [G:\Movies\Denzel Washington\2 Guns.mp4]
19:08:10 T:2520 NOTICE: Thread BackgroundLoader start, auto delete: false
19:08:11 T:3352 ERROR: CDVDDemuxFFmpeg::Open - Error, could not open file G:\Movies\TV Docos\Star Trek Docos\Make It So.avi
19:08:12 T:3352 ERROR: CDVDDemuxFFmpeg::Open - Error, could not open file G:\Movies\Drama\Winters Bone.avi
19:08:31 T:3452 WARNING: CPlayerCoreFactory::GetPlayerCore(videodefaultplayer): no such core: dvdplayer
19:08:31 T:3452 ERROR: Error creating player for item G:\Movies\Denzel Washington\2 Guns.mp4 (File doesn't exist?)
19:08:31 T:3452 ERROR: Playlist Player: skipping unplayable item: 0, path [G:\Movies\Denzel Washington\2 Guns.mp4]
19:08:34 T:584 NOTICE: Thread BackgroundLoader start, auto delete: false
19:08:35 T:3352 ERROR: CDVDDemuxFFmpeg::Open - Error, could not open file G:\Movies\TV Docos\Star Trek Docos\Make It So.avi
19:08:36 T:3352 ERROR: CDVDDemuxFFmpeg::Open - Error, could not open file G:\Movies\Drama\Winters Bone.avi
19:10:59 T:1664 NOTICE: Thread BackgroundLoader start, auto delete: false
19:11:00 T:4172 NOTICE: Thread JobWorker start, auto delete: true
19:11:00 T:3452 NOTICE: Previous line repeats 1 times.
19:11:00 T:3452 WARNING: CPlayerCoreFactory::GetPlayerCore(videodefaultplayer): no such core: dvdplayer
19:11:00 T:3452 ERROR: Error creating player for item G:\Movies\Denzel Washington\2 Guns.mp4 (File doesn't exist?)
19:11:00 T:3452 ERROR: Playlist Player: skipping unplayable item: 0, path [G:\Movies\Denzel Washington\2 Guns.mp4]
19:11:00 T:2272 NOTICE: Thread BackgroundLoader start, auto delete: false
19:11:01 T:4172 ERROR: CDVDDemuxFFmpeg::Open - Error, could not open file G:\Movies\TV Docos\Star Trek Docos\Make It So.avi
19:11:02 T:2140 ERROR: CDVDDemuxFFmpeg::Open - Error, could not open file G:\Movies\Drama\Winters Bone.avi
19:11:11 T:3452 WARNING: CPlayerCoreFactory::GetPlayerCore(videodefaultplayer): no such core: dvdplayer
19:11:11 T:3452 ERROR: Error creating player for item G:\Movies\Denzel Washington\2 Guns.mp4 (File doesn't exist?)
19:11:11 T:3452 ERROR: Playlist Player: skipping unplayable item: 0, path [G:\Movies\Denzel Washington\2 Guns.mp4]
19:11:11 T:4536 NOTICE: Thread BackgroundLoader start, auto delete: false
19:11:12 T:4172 ERROR: CDVDDemuxFFmpeg::Open - Error, could not open file G:\Movies\TV Docos\Star Trek Docos\Make It So.avi
19:11:13 T:2140 ERROR: CDVDDemuxFFmpeg::Open - Error, could not open file G:\Movies\Drama\Winters Bone.avi
#9
@spandex - 2 things

1. That's not a debug log - you need to turn on debugging - see wiki - http://kodi.wiki/view/Debugging
2. Don't post it in-line (it messes up the forum) - open it in notepad, copy and paste to an online paste site (pastebin or similar), then post the link to it here.
#10
Hope this is it...sry bout that

http://pastebin.com/p0pMzmij
#11
According to debug log the playercorefactory.xml doesn't exist - please re-check the path and the file's existence. Also make sure that when you saved the file (in whichever text editor you used), that the file has been saved correctly with the extension .xml and not .txt.xml.
#12
this is the path and file property

C:\Users\D\AppData\Roaming\Kodi\userdata\playercorefactory.xml
#13
Care to through up a screenshot of the location - cheers
#14
As far as the logs indicate the master playercorefactory.xml in the program folder does not exist
Whereas the profile playercorefactory.xml loaded with attribute errors (so a syntax error)
Quote:21:13:55 T:6140 ERROR: Error loading special://profile/playercorefactory.xml, Line 4 (Error reading Attributes.)
Is the file path to the program correct?

Have done a test run with the x64 version of pot player and it runs fine.

Can you try this .xml: win+r: %appdata%\Kodi\userdata\
Install the x64 bit version of Pot player: https://potplayer.daum.net/
Place the master.xml here: win+r: C:\Program Files (x86)\Kodi\system
#15
Hi

new debug http://pastebin.com/p0pMzmij
new core file
<playercorefactory>
<players>
<player name="PotPlayer" type="ExternalPlayer"
<filename>"C:\Program Files\DAUM\PotPlayer\PotPlayerMini64.exe"</filename>
<args>"{1}" /fullscreen /close</args>
<hidexbmc>false</hidexbmc>
<hideconsole>false</hideconsole>
<warpcursor>none</warpcursor>
</player>
</players>
<rules action="prepend"></rules>
</playercorefactory>

took address for location from copy paste shortcut: "C:\Program Files\DAUM\PotPlayer\PotPlayerMini64.exe"

how do i attach a screenshot 4u of pot location?

Logout Mark Read Team Forum Stats Members Help
Kodi external player issue SOLVED0