Posts: 180
Joined: Sep 2008
Reputation:
1
I never worked with external players, but is it possible to use it with the XBMC OSD when using a remote? Or will the remote/XBMC OSD be disabled when using an external player?
Posts: 498
Joined: Jan 2009
Reputation:
2
taxigps
Team-XBMC Python Developer
Posts: 498
chinese movie filename trans to external player are wrong,i think because the para of
void CExternalPlayer::ExecuteAppW32(const char* strPath, const char* strSwitches)
not support unicode
maybe change to:
void CExternalPlayer::ExecuteAppW32(const tchar* strPath, const tchar* strSwitches)
Posts: 194
Joined: Nov 2008
Reputation:
0
I can't this working. I am using svn 17202 and copied and pasted the code snippet from the first page of this post into my advancedsettings.xml in my userdata folder. I have set the path to mplayerc.exe; however, when I select a movie it plays back in XBMC. If I right click and chose Play With I can chose externalplayer and works great. A side note, when I right-click and chose Play With it displays the following:
dvdplayer (default)
externalplayer
Shouldn't externalplayer be listed as default since that is what my advancedsettings.xml code shows? I enabled debug mode but I am getting NO errors or problems parsing the advancedsettings.xml file.
Any cluse?
For shits and giggles, this is the content of my advancedsettings.xml:
<advancedsettings>
<video>
<defaultplayer>externalplayer</defaultplayer>
</video>
<externalplayer>
<filename>c:\mpc-hc\mplayerc.exe</filename>
<args></args>
<forceontop>false</forceontop>
<hidexbmc>true</hidexbmc>
<hideconsole>false</hideconsole>
<hidecursor>false</hidecursor>
</externalplayer>
</advancedsettings>