Kodi Community Forum
[WINDOWS] External Player Support Thread - 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: [WINDOWS] External Player Support Thread (/showthread.php?tid=43511)



RE: [WINDOWS] External Player Support Thread - kalleanker - 2016-01-08

OK, total noob with this stuff....
All I want to do is play my 3D MKV's ripped with MakeMKV in Kodi with Stereoscopic Player as an external player, and everything else with the build in player.
Should be straightforward, but I really can't seem to get it to work. :-(
Here's the script - what am I doing wrong?

<playercorefactory>
<players>
<player name="Stereoscopic Player" type="ExternalPlayer" audio="false" video="true">
<filename>C:\Program Files (x86)\Stereoscopic Player\StereoPlayer.exe</filename>
<args>"{1}" /fullscreen /close</args>
<hidexbmc>false</hidexbmc>
<hideconsole>false</hideconsole>
<warpcursor>none</warpcursor>
</player>
</players>
<rules action="prepend">
<rule filename=".*3D.*" player="Stereoscopic Player"/></rules>
<rule filetypes="mkv" filename=".3D.*" player="Stereoscopic Player"/>
</rules>
</playercorefactory>

Any pointers appreciated! :-)

EDIT: Changed <hidexbmc> to <hidekodi>, but still no luck...


RE: [WINDOWS] External Player Support Thread - kalleanker - 2016-01-08

Nailed it!

In case someone else wants to do the same, this script worked for me:

<playercorefactory>
<players>
<player name="Stereoscopic Player" type="ExternalPlayer" audio="false" video="true">
<filename>C:\Program Files (x86)\Stereoscopic Player\StereoPlayer.exe</filename>
<args>"{1}" /fullscreen /close</args>
<hidexbmc>false</hidexbmc>
<hideconsole>false</hideconsole>
<warpcursor>none</warpcursor>
</player>
</players>
<rules action="prepend">
<rule filetypes="mkv" filename=".*3D.*" player="Stereoscopic Player"/>
</rules>
</playercorefactory>


RE: [WINDOWS] External Player Support Thread - bcacbe - 2016-01-12

Hello Everyone, I'm using Windows 10 with Kodi 15.2 and trying to use an external player. I've tried VLC and MPC-HC, but they both re-open automatically when closed and start playing the stream again. This occurs when watching rtmp streams. Does anyone know how to fix this?


RE: [WINDOWS] External Player Support Thread - seedubxj - 2016-01-21

Does anyone have a functional rule for only launching the external player if the source is HD Audio (ie DTS HD MA or TrueHD)? Right now, its launching on ALL my videos, and I really only need it for full Blu Ray rips. Thanks!

Here is what I have right now.

<playercorefactory>
<players>
<player name="MPC-HC" type="ExternalPlayer" audio="false" video="true">
<filename>C:\Program Files\MPC-HC\mpc-hc.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="mts|m2ts|vob|bdmv" player="MPC-HC">
</rule>
</rules>
</playercorefactory>


RE: [WINDOWS] External Player Support Thread - Warner306 - 2016-01-22

(2016-01-21, 23:53)seedubxj Wrote: Does anyone have a functional rule for only launching the external player if the source is HD Audio (ie DTS HD MA or TrueHD)? Right now, its launching on ALL my videos, and I really only need it for full Blu Ray rips. Thanks!

Here is what I have right now.

<playercorefactory>
<players>
<player name="MPC-HC" type="ExternalPlayer" audio="false" video="true">
<filename>C:\Program Files\MPC-HC\mpc-hc.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="mts|m2ts|vob|bdmv" player="MPC-HC">
</rule>
</rules>
</playercorefactory>

Add the suffix "Bluray" to each of your Blu-ray rips (e.g. "Move (year).Bluray"). Then, add the following rule to your playercorefactory:

<rule filename=".*Bluray.*" player="MPC-HC" />

This tag can also be used to change the source flag to a Blu-ray icon in many skins.


RE: [WINDOWS] External Player Support Thread - User 318462 - 2016-02-27

Nevermind


RE: [WINDOWS] External Player Support Thread - gomno - 2016-02-29

I have successfully set up stereoscopic player as an external player and have no video problems, but I don't know how to set it up to play the correct audio.

For example I have an MKV video file with DTS-HD MA and am only able to get stereo.

I have no trouble playing all audio formats using PowerDVD as an external player.

I have a windows 10 HTPC with HDMI out to my Denon AVR (7.1 speaker set up) then to my Panasonic TV.

Can anyone suggest where I can find a set up guide for proper audio playback?


RE: [WINDOWS] External Player Support Thread - Derek - 2016-03-01

use powerdvd 15


RE: [WINDOWS] External Player Support Thread - gomno - 2016-03-01

PowerDVD won't play 3d MKV files in 3d. Only stereoscopic player can do this.


RE: [WINDOWS] External Player Support Thread - acelove - 2016-03-01

With external player via Windows. Is it possible to tell my Nexus Player to play the video file from my Windows Kodi setup?


RE: [WINDOWS] External Player Support Thread - brazen1 - 2016-03-01

(2016-03-01, 04:52)gomno Wrote: PowerDVD won't play 3d MKV files in 3d. Only stereoscopic player can do this.

Where do you people get your info from?
PDVD has no problem playing 3D mkv.
Right click your mkv and select open with PDVD.
Put your display in TAB or SBS mode.
Done.

KODI plays 3D mkv.
Why would you use an external player?

The only need for an external player is 3D MVC Frame packed.
You know, a complete 3D Blu-ray untouched.
The only supported player that does EVERYTHING correctly is PDVD.
Fortunately, PDVD can be used with KODI at the same time once you set it up properly.


RE: [WINDOWS] External Player Support Thread - gomno - 2016-03-01

My goal is to play 3D MVC Frame packed with a player that does not detect Cinavia.

Unless I am mistaken, only the stereoscopic player can play frame packed 3D from an mkv. I suppose I should have specified this.

Playing a 3D iso with Cinavia can be done with PowerDVD and AnyDVD running, but I am looking for a simpler solution via using stereoscopic player as an external player.


RE: [WINDOWS] External Player Support Thread - Derek - 2016-03-02

Good luck then i'm out of ideas and my brain is bored (No disrespect intended).


RE: [WINDOWS] External Player Support Thread - rmilyard - 2016-03-06

Does anyone have there PowerDVD 15 and Jarvis running? If so could you please post your files?


RE: [WINDOWS] External Player Support Thread - rmilyard - 2016-03-06

Right now trying these and works but doesn't autostart movie. Also would like to use PowerDVDCinema mode since using on HTPC and works better with Remote.

playercorefactory
Code:
<playercorefactory>
    <players>
           <player name="ISO_BDMV_Player" type="ExternalPlayer" audio="false" video="true">
            <filename>C:\Users\Ray\AppData\Roaming\Kodi\userdata\PlayISO.bat</filename>
            <args>"{1}"</args>
            <hidexbmc>false</hidexbmc>
                        <hideconsole>True</hideconsole>
                        <warpcursor>none</warpcursor>                
        </player>
        </players>
        <rules action="prepend">
        <!-- Bluray ISO -->
                <!-- Bluray ISO/BDMV -->
        <rule filetypes="iso|bdmv|mpls" player="ISO_BDMV_Player"/>
                 
</rules>
</playercorefactory>

PlayISO
Code:
Set file=%1
Set dummy=%file:iso=%
IF NOT %dummy% == %file% (GOTO playiso) ELSE (goto next)

:next
Set file=%1
Set dummy=%file:mpls=%
IF NOT %dummy% == %file% (GOTO plaympls) ELSE (goto playbdmv)

:playiso
"C:\Program Files (x86)\Elaborate Bytes\VirtualCloneDrive\VCDMount.exe" /d=0 %1
"C:\Program Files (x86)\CyberLink\PowerDVD15\PowerDVD.exe" D:
"C:\Program Files (x86)\Elaborate Bytes\VirtualCloneDrive\VCDMount.exe" /d=0 /u
GOTO end

:plaympls
set pth=%1
set pth=%pth:~1,-25%

"C:\Program Files (x86)\CyberLink\PowerDVD15\PowerDVD.exe" "%pth%" exit
GOTO end

:playbdmv
set pth=%1
set pth=%pth:BDMV\MovieObject.bdmv=%
set pth=%pth:BDMV\index.bdmv=%

"C:\Program Files (x86)\CyberLink\PowerDVD15\PowerDVD.exe" %pth% exit
GOTO end

:end
exit