2009-06-11, 19:40
I got XBMC to run my external Player "Media Player Classic Home Cinema".
How to add a second external player?
I need it for videos which are recording at the moment - here i need VLC. All other Players and also the XBMC (mplayer) does not work.
I record with Huappauge PVR 250 in MPEg2.
I tried this, but cant get it to work - i dont see VLC in my XBMC right click menu.
advancedsettings.xml
Media Player Classic works, VLC not ... how to add a second player?
Is it possible to to this:
if file extension is MPG use VLC - else use Media Player classic (automatically)
How to add a second external player?
I need it for videos which are recording at the moment - here i need VLC. All other Players and also the XBMC (mplayer) does not work.
I record with Huappauge PVR 250 in MPEg2.
I tried this, but cant get it to work - i dont see VLC in my XBMC right click menu.
advancedsettings.xml
Code:
<advancedsettings>
<video>
<defaultplayer>externalplayer</defaultplayer>
</video>
<externalplayer>
<filename>C:\Portable\MPHC\mplayerc.exe</filename>
<args>/fullscreen</args>
<forceontop>true</forceontop>
<hidexbmc>true</hidexbmc>
<hideconsole>false</hideconsole>
<hidecursor>false</hidecursor>
</externalplayer>
<VLC>
<filename>C:\Portable\VLC\VLCstart.cmd</filename>
<forceontop>true</forceontop>
<hidexbmc>true</hidexbmc>
<hideconsole>false</hideconsole>
<hidecursor>false</hidecursor>
</VLC>
</advancedsettings>
Media Player Classic works, VLC not ... how to add a second player?
Is it possible to to this:
if file extension is MPG use VLC - else use Media Player classic (automatically)