Kodi Community Forum
Another External Player Code, but Very Simple to Setup - 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: Another External Player Code, but Very Simple to Setup (/showthread.php?tid=116724)



RE: Another External Player Code, but Very Simple to Setup - acejh1987 - 2013-02-10

Deadspeak - It may be a typo but you are missing

<playercorefactory>
<players>

from the start of your playercorefactory.xml

PlayISO.bat will not work outside of XBMC, as %1 needs to be assigned.


RE: Another External Player Code, but Very Simple to Setup - Vin Petrol - 2013-02-10


Thanks for that ace, works perfect again now Smile


RE: Another External Player Code, but Very Simple to Setup - acejh1987 - 2013-02-10

(2013-02-10, 01:55)Vin Petrol Wrote: Thanks for that ace, works perfect again now Smile

Great, I'm glad its working Big Grin




RE: Another External Player Code, but Very Simple to Setup - deadspeak - 2013-02-10

(2013-02-10, 01:43)acejh1987 Wrote: Deadspeak - It may be a typo but you are missing

<playercorefactory>
<players>

from the start of your playercorefactory.xml

PlayISO.bat will not work outside of XBMC, as %1 needs to be assigned.

did'nt copy it into the threat correctly it is as per below.

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

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

</player>
<player name="Universal_Player" type="ExternalPlayer" audio="false" video="true">
<filename>D:\Media Player Classic - Home Cinema\mpc-hc.exe</filename>
<args>"{1}"</args>
<hidexbmc>True</hidexbmc>
<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|mkv|avi|ts" player="Universal_Player"/>

<!-- Bluray Disc -->
<rule filetypes="bd|ifo" player="Disc_Player"/>


</rules>
</playercorefactory>

also have no idea what to add to the %1


RE: Another External Player Code, but Very Simple to Setup - PeterMac - 2013-02-10

Can someone help me, everything is working fine for me with ISO, BDMV, Disc with TMT5, but I have problem with uMCEPlayer5.exe.
I can't control it with my iMON remote when uMCEPlayer5 windows starts.

How to make uMCEPlayer be on top ? because iMON software still think this is XBMC.

I tried changed command
<forceontop>false</forceontop>
on true but nothing helped.

I tried to run uMCEPlayer5.exe itself without XBMC, and also remote not working but when I click left mouse button then starts working.
How to fix that Sad ?

Here is my playercorefactory.xml
Quote:<playercorefactory>
<players>
<player name="ISO_BDMV_Player" type="ExternalPlayer" audio="false" video="true">
<filename>C:\Users\Piotr\AppData\Roaming\XBMC\userdata\PlayISO.bat</filename>
<args>"{1}"</args>
<hidexbmc>True</hidexbmc>
<hideconsole>true</hideconsole>
<forceontop>false</forceontop>

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

</player>
</players>
<rules action="prepend">
<!-- Bluray ISO/BDMV -->
<rule filetypes="BD|IFO|bdmv|mpls" player="ISO_BDMV_Player"/>
<!-- Multiple files -->
<rule filetypes="m2ts|mkv|avi|ts" player="Universal_Player"/>

<!-- Bluray Disc -->
<rule filetypes="bd|ifo" player="Disc_Player"/>


</rules>
</playercorefactory>

PlayISO
Quote: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

:unmounted
IF EXIST G:\BDMV\\. GOTO mounted
GOTO unmounted

:mounted

"C:\Program Files (x86)\ArcSoft\TotalMedia Theatre 5\uMCEPlayer5.exe" G:
"C:\Program Files (x86)\Elaborate Bytes\VirtualCloneDrive\VCDMount.exe" /d=0 /u
GOTO end

:next

"C:\Program Files (x86)\ArcSoft\TotalMedia Theatre 5\uMCEPlayer5.exe" %1 exit
GOTO end

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

"C:\Program Files (x86)\ArcSoft\TotalMedia Theatre 5\uMCEPlayer5.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)\ArcSoft\TotalMedia Theatre 5\uMCEPlayer5.exe" %pth% exit
GOTO end

:end
exit



RE: Another External Player Code, but Very Simple to Setup - acejh1987 - 2013-02-10

(2013-02-10, 02:26)deadspeak Wrote: did'nt copy it into the threat correctly it is as per below.

The files look good to me, if possible could you post up a logfile?




RE: Another External Player Code, but Very Simple to Setup - deadspeak - 2013-02-12

(2013-02-10, 14:53)acejh1987 Wrote:
(2013-02-10, 02:26)deadspeak Wrote: did'nt copy it into the threat correctly it is as per below.

The files look good to me, if possible could you post up a logfile?


Here you go.

22:36:06 T:3936 NOTICE: -----------------------------------------------------------------------
22:36:06 T:3936 NOTICE: Starting XBMC (12.0 Git:20130127-fb595f2), Platform: Windows 7 SP1 64-bit, build 7601. Built on Jan 28 2013 (compiler 1600)
22:36:06 T:3936 NOTICE: Intel® Core™ i3 CPU 530 @ 2.93GHz
22:36:06 T:3936 NOTICE: Desktop Resolution: 1920x1080 32Bit at 50Hz
22:36:06 T:3936 NOTICE: Running with restricted rights
22:36:06 T:3936 NOTICE: Aero is disabled
22:36:06 T:3936 NOTICE: special://xbmc/ is mapped to: C:\Program Files (x86)\XBMC
22:36:06 T:3936 NOTICE: special://xbmcbin/ is mapped to: C:\Program Files (x86)\XBMC
22:36:06 T:3936 NOTICE: special://masterprofile/ is mapped to: C:\Users\Paul\AppData\Roaming\XBMC\userdata
22:36:06 T:3936 NOTICE: special://home/ is mapped to: C:\Users\Paul\AppData\Roaming\XBMC\
22:36:06 T:3936 NOTICE: special://temp/ is mapped to: C:\Users\Paul\AppData\Roaming\XBMC\cache
22:36:06 T:3936 NOTICE: The executable running is: C:\Program Files (x86)\XBMC\XBMC.exe
22:36:06 T:3936 NOTICE: Local hostname: HTPC2012-PC
22:36:06 T:3936 NOTICE: Log File is located: C:\Users\Paul\AppData\Roaming\XBMC\xbmc.log
22:36:06 T:3936 NOTICE: -----------------------------------------------------------------------
22:36:06 T:3936 NOTICE: Enumerated DirectSound devices:
22:36:06 T:3936 NOTICE: Device 1
22:36:06 T:3936 NOTICE: m_deviceName : {0E2D1A3E-C79D-4349-B1BB-4E179683B9F8}
22:36:06 T:3936 NOTICE: m_displayName : SPDIF - Digital Audio (S/PDIF) (2- High Definition Audio Device)
22:36:06 T:3936 NOTICE: m_displayNameExtra: DirectSound: Digital Audio (S/PDIF) (2- High Definition Audio Device)
22:36:06 T:3936 NOTICE: m_deviceType : AE_DEVTYPE_IEC958
22:36:06 T:3936 NOTICE: m_channels : FL,FR
22:36:06 T:3936 NOTICE: m_sampleRates : 44100
22:36:06 T:3936 NOTICE: m_dataFormats : AE_FMT_FLOAT,AE_FMT_AC3
22:36:06 T:3936 NOTICE: Device 2
22:36:06 T:3936 NOTICE: m_deviceName : {403EBB3F-C8B4-4C05-B8EC-18215A361518}
22:36:06 T:3936 NOTICE: m_displayName : HDMI - SONY AVAMP (Intel® Display Audio)
22:36:06 T:3936 NOTICE: m_displayNameExtra: DirectSound: SONY AVAMP (Intel® Display Audio)
22:36:06 T:3936 NOTICE: m_deviceType : AE_DEVTYPE_HDMI
22:36:06 T:3936 NOTICE: m_channels : FL,FR
22:36:06 T:3936 NOTICE: m_sampleRates : 48000
22:36:06 T:3936 NOTICE: m_dataFormats : AE_FMT_FLOAT,AE_FMT_AC3
22:36:06 T:3936 NOTICE: Enumerated WASAPI devices:
22:36:06 T:3936 NOTICE: Device 1
22:36:06 T:3936 NOTICE: m_deviceName : {0E2D1A3E-C79D-4349-B1BB-4E179683B9F8}
22:36:06 T:3936 NOTICE: m_displayName : SPDIF - Digital Audio (S/PDIF) (2- High Definition Audio Device)
22:36:06 T:3936 NOTICE: m_displayNameExtra: WASAPI: Digital Audio (S/PDIF) (2- High Definition Audio Device)
22:36:06 T:3936 NOTICE: m_deviceType : AE_DEVTYPE_IEC958
22:36:06 T:3936 NOTICE: m_channels : FL,FR
22:36:06 T:3936 NOTICE: m_sampleRates : 192000,96000,88200,48000,44100
22:36:06 T:3936 NOTICE: m_dataFormats : AE_FMT_DTS,AE_FMT_AC3,AE_FMT_AAC,AE_FMT_S24NE4,AE_FMT_S24LE4,AE_FMT_S24BE4,AE_FMT_S16NE,AE_FMT_S16LE,AE_FMT_S16BE
22:36:06 T:3936 NOTICE: Device 2
22:36:06 T:3936 NOTICE: m_deviceName : {403EBB3F-C8B4-4C05-B8EC-18215A361518}
22:36:06 T:3936 NOTICE: m_displayName : HDMI - SONY AVAMP (Intel® Display Audio)
22:36:06 T:3936 NOTICE: m_displayNameExtra: WASAPI: SONY AVAMP (Intel® Display Audio)
22:36:06 T:3936 NOTICE: m_deviceType : AE_DEVTYPE_HDMI
22:36:06 T:3936 NOTICE: m_channels : FL,FR,FC,LFE,SL,SR,BL,BR
22:36:06 T:3936 NOTICE: m_sampleRates : 192000,176400,96000,88200,48000,44100,32000
22:36:06 T:3936 NOTICE: m_dataFormats : AE_FMT_DTS,AE_FMT_AC3,AE_FMT_S24NE4,AE_FMT_S24LE4,AE_FMT_S24BE4,AE_FMT_S16NE,AE_FMT_S16LE,AE_FMT_S16BE,AE_FMT_LPCM
22:36:06 T:3936 NOTICE: load settings...
22:36:06 T:3936 NOTICE: special://profile/ is mapped to: special://masterprofile/
22:36:06 T:3936 NOTICE: loading special://masterprofile/guisettings.xml
22:36:06 T:3936 NOTICE: Getting hardware information now...
22:36:06 T:3936 NOTICE: Loading player core factory settings from special://xbmc/system/playercorefactory.xml.
22:36:06 T:3936 NOTICE: Loaded playercorefactory configuration
22:36:06 T:3936 NOTICE: Loading player core factory settings from special://profile/playercorefactory.xml.
22:36:06 T:3936 NOTICE: Loaded playercorefactory configuration
22:36:06 T:3936 NOTICE: No settings file to load (special://xbmc/system/advancedsettings.xml)
22:36:06 T:3936 NOTICE: No settings file to load (special://masterprofile/advancedsettings.xml)
22:36:06 T:3936 NOTICE: Default DVD Player: dvdplayer
22:36:06 T:3936 NOTICE: Default Video Player: dvdplayer
22:36:06 T:3936 NOTICE: Default Audio Player: paplayer
22:36:06 T:3936 NOTICE: Disabled debug logging due to GUI setting. Level 0.
22:36:06 T:3936 NOTICE: Log level changed to 0
22:36:06 T:3936 NOTICE: Loading media sources from special://masterprofile/sources.xml
22:36:06 T:1884 NOTICE: Thread CSoftAE start, auto delete: false
22:36:06 T:3936 NOTICE: Running database version Addons15
22:36:06 T:6192 NOTICE: Thread CRemoteControl start, auto delete: false
22:36:06 T:3936 NOTICE: Found screen: Generic PnP Monitor on Intel® HD Graphics, adapter 0.
22:36:06 T:3936 NOTICE: Primary mode: 1920x1080 @ 50.00 - Full Screen
22:36:06 T:8572 NOTICE: Thread XBMC Peripherals start, auto delete: false
22:36:06 T:3936 NOTICE: Additional mode: 640x480 @ 59.94 - Full Screen
22:36:06 T:3936 NOTICE: Previous line repeats 2 times.
22:36:06 T:3936 NOTICE: Additional mode: 640x480 @ 60.00 - Full Screen
22:36:06 T:3936 NOTICE: Previous line repeats 2 times.
22:36:06 T:3936 NOTICE: Additional mode: 720x480 @ 59.94 - Full Screen
22:36:06 T:3936 NOTICE: Previous line repeats 2 times.
22:36:06 T:3936 NOTICE: Additional mode: 720x480 @ 60.00 - Full Screen
22:36:06 T:3936 NOTICE: Previous line repeats 2 times.
22:36:06 T:3936 NOTICE: Additional mode: 720x576 @ 50.00 - Full Screen
22:36:06 T:3936 NOTICE: Previous line repeats 2 times.
22:36:06 T:3936 NOTICE: Additional mode: 800x600 @ 60.00 - Full Screen
22:36:06 T:3936 NOTICE: Previous line repeats 2 times.
22:36:06 T:3936 NOTICE: Additional mode: 1024x768 @ 60.00 - Full Screen
22:36:06 T:3936 NOTICE: Previous line repeats 2 times.
22:36:06 T:3936 NOTICE: Additional mode: 1152x864 @ 60.00 - Full Screen
22:36:06 T:3936 NOTICE: Previous line repeats 2 times.
22:36:06 T:3936 NOTICE: Additional mode: 1280x600 @ 60.00 - Full Screen
22:36:06 T:3936 NOTICE: Previous line repeats 2 times.
22:36:06 T:3936 NOTICE: Additional mode: 1280x720 @ 50.00 - Full Screen
22:36:06 T:3936 NOTICE: Previous line repeats 2 times.
22:36:06 T:3936 NOTICE: Additional mode: 1280x720 @ 59.94 - Full Screen
22:36:06 T:3936 NOTICE: Previous line repeats 2 times.
22:36:06 T:3936 NOTICE: Additional mode: 1280x720 @ 60.00 - Full Screen
22:36:06 T:3936 NOTICE: Previous line repeats 2 times.
22:36:06 T:3936 NOTICE: Additional mode: 1280x768 @ 60.00 - Full Screen
22:36:06 T:3936 NOTICE: Previous line repeats 2 times.
22:36:06 T:3936 NOTICE: Additional mode: 1280x800 @ 60.00 - Full Screen
22:36:06 T:3936 NOTICE: Previous line repeats 2 times.
22:36:06 T:3936 NOTICE: Additional mode: 1280x960 @ 60.00 - Full Screen
22:36:06 T:3936 NOTICE: Previous line repeats 2 times.
22:36:06 T:3936 NOTICE: Additional mode: 1280x1024 @ 60.00 - Full Screen
22:36:06 T:3936 NOTICE: Previous line repeats 2 times.
22:36:06 T:3936 NOTICE: Additional mode: 1360x768 @ 60.00 - Full Screen
22:36:06 T:3936 NOTICE: Previous line repeats 2 times.
22:36:06 T:3936 NOTICE: Additional mode: 1366x768 @ 60.00 - Full Screen
22:36:06 T:3936 NOTICE: Previous line repeats 2 times.
22:36:06 T:3936 NOTICE: Additional mode: 1400x1050 @ 60.00 - Full Screen
22:36:06 T:3936 NOTICE: Previous line repeats 2 times.
22:36:06 T:3936 NOTICE: Additional mode: 1440x480 @ 59.94 - Full Screen
22:36:06 T:3936 NOTICE: Previous line repeats 2 times.
22:36:06 T:3936 NOTICE: Additional mode: 1440x480 @ 60.00 - Full Screen
22:36:06 T:3936 NOTICE: Previous line repeats 2 times.
22:36:06 T:3936 NOTICE: Additional mode: 1440x480 @ 30.00i - Full Screen
22:36:06 T:3936 NOTICE: Previous line repeats 2 times.
22:36:06 T:3936 NOTICE: Additional mode: 1440x576 @ 50.00 - Full Screen
22:36:06 T:3936 NOTICE: Previous line repeats 2 times.
22:36:06 T:3936 NOTICE: Additional mode: 1440x576 @ 25.00i - Full Screen
22:36:06 T:3936 NOTICE: Previous line repeats 2 times.
22:36:06 T:3936 NOTICE: Additional mode: 1440x900 @ 60.00 - Full Screen
22:36:06 T:3936 NOTICE: Previous line repeats 2 times.
22:36:06 T:3936 NOTICE: Additional mode: 1600x900 @ 60.00 - Full Screen
22:36:06 T:3936 NOTICE: Previous line repeats 1 times.
22:36:06 T:3936 NOTICE: Additional mode: 1680x1050 @ 60.00 - Full Screen
22:36:06 T:3936 NOTICE: Previous line repeats 2 times.
22:36:06 T:3936 NOTICE: Additional mode: 1920x1080 @ 50.00 - Full Screen
22:36:06 T:3936 NOTICE: Additional mode: 1920x1080 @ 25.00i - Full Screen
22:36:06 T:3936 NOTICE: Additional mode: 1920x1080 @ 59.94 - Full Screen
22:36:06 T:3936 NOTICE: Additional mode: 1920x1080 @ 29.97i - Full Screen
22:36:06 T:3936 NOTICE: Additional mode: 1920x1080 @ 60.00 - Full Screen
22:36:06 T:3936 NOTICE: Additional mode: 1920x1080 @ 30.00i - Full Screen
22:36:06 T:3936 NOTICE: Checking resolution 16
22:36:07 T:3936 NOTICE: Running database version Addons15
22:36:07 T:3936 NOTICE: Running database version ViewModes4
22:36:07 T:3936 NOTICE: Running database version Textures13
22:36:07 T:3936 NOTICE: Running database version MyMusic32
22:36:07 T:3936 NOTICE: Running database version MyVideos75
22:36:07 T:3936 NOTICE: Running database version TV22
22:36:07 T:3936 NOTICE: Running database version Epg7
22:36:07 T:3936 NOTICE: initializing playlistplayer
22:36:07 T:3936 NOTICE: DONE initializing playlistplayer
22:36:09 T:6476 NOTICE: Thread XBPyThread start, auto delete: false
22:36:09 T:6476 NOTICE: Previous line repeats 2 times.
22:36:09 T:6476 NOTICE: -->Python Interpreter Initialized<--
22:36:09 T:6300 NOTICE: Thread XBPyThread start, auto delete: false
22:36:09 T:3936 NOTICE: Previous line repeats 1 times.
22:36:09 T:3936 NOTICE: CApplication::UpdateLibraries - Starting video library startup scan
22:36:09 T:1716 NOTICE: -->Python Interpreter Initialized<--
22:36:09 T:6272 NOTICE: -->Python Interpreter Initialized<--
22:36:09 T:3844 NOTICE: Thread CVideoInfoScanner start, auto delete: false
22:36:09 T:3936 NOTICE: initialize done
22:36:09 T:6504 NOTICE: Thread XBPyThread start, auto delete: false
22:36:09 T:3936 NOTICE: Previous line repeats 1 times.
22:36:09 T:3936 NOTICE: Running the application...
22:36:09 T:3936 NOTICE: ES: Starting event server
22:36:09 T:6064 NOTICE: Thread CEventServer start, auto delete: false
22:36:09 T:6064 NOTICE: ES: Starting UDP Event server on 0.0.0.0:9777
22:36:09 T:6064 NOTICE: UDP: Listening on port 9777
22:36:09 T:7784 NOTICE: Thread CTCPServer start, auto delete: false
22:36:09 T:3844 NOTICE: VideoInfoScanner: Starting scan ..
22:36:09 T:6300 NOTICE: -->Python Interpreter Initialized<--
22:36:09 T:4960 NOTICE: Thread Jobworker start, auto delete: true
22:36:09 T:8652 NOTICE: -->Python Interpreter Initialized<--
22:36:09 T:6504 NOTICE: -->Python Interpreter Initialized<--
22:36:09 T:1068 NOTICE: -->Python Interpreter Initialized<--
22:36:10 T:6272 NOTICE: Artwork Downloader: ## Service - Run at startup: False
22:36:10 T:6272 NOTICE: Artwork Downloader: ## Service - Delayed startup: minutes
22:36:10 T:6272 NOTICE: Artwork Downloader: ## Service - Run as service: False
22:36:10 T:6272 NOTICE: Artwork Downloader: ## Service - Time: :00
22:36:10 T:6504 NOTICE: StorageServer Module loaded RUN
22:36:10 T:6504 NOTICE: StorageClient-2.5.0 Starting server
22:36:10 T:6504 NOTICE: StorageServer-2.5.0 Storage Server starting C:\Users\Paul\AppData\Roaming\XBMC\userdata\addon_data\script.common.plugin.cache\commoncache.db
22:36:13 T:5580 NOTICE: Thread Jobworker start, auto delete: true
22:36:13 T:5352 NOTICE: Thread XBPyThread start, auto delete: false
22:36:13 T:5352 NOTICE: -->Python Interpreter Initialized<--
22:36:13 T:7288 NOTICE: Thread Jobworker start, auto delete: true
22:36:13 T:8080 NOTICE: Thread CAlarmClock start, auto delete: false
22:36:13 T:1232 NOTICE: Thread Jobworker start, auto delete: true
22:36:18 T:3844 WARNING: No information found for item 'smb://SERVER/Blu-Ray Movies/Alien Anthology/Making The Alien Anthology - Disk 5/Making The Alien Anthology - Disk 5.iso', it won't be added to the library.
22:36:19 T:3844 WARNING: No information found for item 'smb://SERVER/Blu-Ray Movies/Alien Anthology/The Alien Anthology Archives - Disk 6/The Alien Anthology Archives - Disk 6.iso', it won't be added to the library.
22:36:19 T:4960 WARNING: XFILE::CCurlFile::CReadState::FillBuffer: curl failed with code 28
22:36:19 T:4960 ERROR: CCurlFile::CReadState::Open, didn't get any data from stream.
22:36:19 T:4960 ERROR: XFILE::CFileCache::Open - failed to open source <http://mirrors.xbmc.org/addons/frodo/addons.xml.md5>
22:36:19 T:3844 WARNING: No information found for item 'smb://SERVER/Blu-Ray Movies/Blade Runner/Blade Runner - Disc 4 Enhancement Archive/Disc 4 Enhancement Archive.iso', it won't be added to the library.
22:36:20 T:3844 WARNING: No information found for item 'smb://SERVER/Blu-Ray Movies/Blade Runner/Blade Runner - Disk 1 The Final Cut/Blade Runner - Disk 1 The Final Cut.iso', it won't be added to the library.
22:36:20 T:3844 WARNING: No information found for item 'smb://SERVER/Blu-Ray Movies/Blade Runner/Blade Runner - Disk 2 Dangerous Days Making Blade Runner/Blade Runner - Disk 2 Dangerous Days Making Blade Runner.iso', it won't be added to the library.
22:36:21 T:3844 WARNING: No information found for item 'smb://SERVER/Blu-Ray Movies/Blade Runner/Blade Runner - Disk 3 3 versions/Disc 3 U.S. Theatrical Cut (1982), International Theatrical Cut (1982), Director's Cut (1992).iso', it won't be added to the library.
22:36:21 T:3844 WARNING: No information found for item 'smb://SERVER/Blu-Ray Movies/Blade Runner/Blade Runner - Disk 5 Workprint/Blade Runner - Disk 5 Workprint.iso', it won't be added to the library.
22:36:22 T:3844 WARNING: No information found for item 'smb://SERVER/Blu-Ray Movies/Star Wars - The Complete Saga/Disk 1 - Bonus Disk Episodes I-III Archives/Disk 1 - Bonus Disk Episodes I-III Archives.iso', it won't be added to the library.
22:36:23 T:3844 WARNING: No information found for item 'smb://SERVER/Blu-Ray Movies/Star Wars - The Complete Saga/Disk 2 - Bonus Disk Episodes IV-VI Archives/Disk 2 - Bonus Disk Episodes IV-VI Archives.iso', it won't be added to the library.
22:36:23 T:3844 WARNING: No information found for item 'smb://SERVER/Blu-Ray Movies/Star Wars - The Complete Saga/Disk 3 - Bonus Disk Documentaries & Spoofs/Disk 3 - Bonus Disk Documentaries & Spoofs.iso', it won't be added to the library.
22:36:24 T:3844 WARNING: No information found for item 'smb://SERVER/Movie Downloads Blu-Ray Disks/Kick-Ass (2011)/Kick-Ass.mkv', it won't be added to the library.
22:36:24 T:3844 WARNING: No information found for item 'smb://SERVER/Movie Downloads Blu-Ray Disks/Tha Amazing Spiderman/Tha Amazing Spiderman.mkv', it won't be added to the library.
22:36:24 T:3844 WARNING: VIDEO::CVideoInfoScanner:Tonguerocess directory 'smb://SERVER/Movie Downloads Blu-Ray Disks/Tombstone/' does not exist - skipping scan.
22:36:24 T:3844 WARNING: VIDEO::CVideoInfoScanner:Tonguerocess directory 'smb://SERVER/Movie Downloads Blu-Ray Disks/Toy Story 2/' does not exist - skipping scan.
22:36:24 T:3844 WARNING: VIDEO::CVideoInfoScanner:Tonguerocess directory 'smb://SERVER/Movie Downloads Blu-Ray Disks/Toy Story 3/' does not exist - skipping scan.
22:36:24 T:3844 WARNING: VIDEO::CVideoInfoScanner:Tonguerocess directory 'smb://SERVER/Movie Downloads Blu-Ray Disks/Toy Story/' does not exist - skipping scan.
22:36:24 T:3844 WARNING: VIDEO::CVideoInfoScanner:Tonguerocess directory 'smb://SERVER/Movie Downloads Blu-Ray Disks/Up/' does not exist - skipping scan.
22:36:24 T:3844 WARNING: VIDEO::CVideoInfoScanner:Tonguerocess directory 'smb://SERVER/Movie Downloads Blu-Ray Disks/Wall-E/' does not exist - skipping scan.
22:36:24 T:3844 WARNING: VIDEO::CVideoInfoScanner:Tonguerocess directory 'smb://SERVER/Movie Downloads Blu-Ray Disks/War Of The Worlds/' does not exist - skipping scan.
22:36:24 T:3844 WARNING: VIDEO::CVideoInfoScanner:Tonguerocess directory 'smb://SERVER/Movie Downloads Blu-Ray Disks/Woman In Black/' does not exist - skipping scan.
22:36:26 T:3844 WARNING: No information found for item 'smb://SERVER/Movie Downloads/Peterpan/Peterpan.mkv', it won't be added to the library.
22:36:27 T:8204 NOTICE: Thread Background Loader start, auto delete: false
22:36:27 T:3844 WARNING: No information found for item 'smb://SERVER/Movies/Pirates Of The Carribean (The Curse Of The Black Pearl)/Pirates Of The Carribean (The Curse Of The Black Pearl).mkv', it won't be added to the library.
22:36:28 T:3844 WARNING: VIDEO::CVideoInfoScanner:Tonguerocess directory 'smb://SERVER/Tv/American Horror Story/' does not exist - skipping scan.
22:36:28 T:3844 WARNING: VIDEO::CVideoInfoScanner:Tonguerocess directory 'smb://SERVER/Tv/An Idiot Abroad/' does not exist - skipping scan.
22:36:28 T:3844 WARNING: VIDEO::CVideoInfoScanner:Tonguerocess directory 'smb://SERVER/Tv/Rev/' does not exist - skipping scan.
22:36:28 T:3844 WARNING: VIDEO::CVideoInfoScanner:Tonguerocess directory 'smb://SERVER/Tv/True Blood/' does not exist - skipping scan.
22:36:28 T:3844 NOTICE: VideoInfoScanner: Finished scan. Scanning for video info took 00:19
22:36:29 T:6376 NOTICE: Thread Background Loader start, auto delete: false
22:36:32 T:1232 ERROR: DVDFileSeekForce - ignored size of file indicated in UDF
22:36:33 T:3936 ERROR: Previous line repeats 99 times.
22:36:33 T:3936 WARNING: Trying to add unsupported control type 1
22:36:33 T:1420 NOTICE: Thread CFileCache start, auto delete: false
22:36:44 T:4960 NOTICE: Previous line repeats 1 times.
22:36:44 T:4960 WARNING: XFILE::CCurlFile::CReadState::FillBuffer: curl failed with code 28
22:36:44 T:4960 ERROR: CCurlFile::CReadState::Open, didn't get any data from stream.
22:36:44 T:4960 ERROR: XFILE::CFileCache::Open - failed to open source <http://mirrors.xbmc.org/addons/frodo/service.watchdog/service.watchdog-0.7.1.zip.md5>
22:36:49 T:3936 NOTICE: Storing total System Uptime
22:36:49 T:3936 NOTICE: Saving settings
22:36:49 T:3936 NOTICE: stop all
22:36:49 T:3936 NOTICE: ES: Stopping event server
22:36:49 T:3936 NOTICE: stopping zeroconf publishing
22:36:50 T:6064 NOTICE: ES: UDP Event server stopped
22:36:50 T:3936 NOTICE: stop sap announcement listener
22:36:50 T:3936 NOTICE: clean cached files!
22:36:50 T:3936 NOTICE: unload skin
22:36:55 T:3936 ERROR: XBPyThread:Confusedtop - script C:\Users\Paul\AppData\Roaming\XBMC\addons\service.skin.widgets\default.py didn't stop in 5 seconds - let's kill it
22:36:55 T:6504 NOTICE: StorageServer-2.5.0 Closed down
22:37:00 T:3936 ERROR: XBPyThread:Confusedtop - script C:\Users\Paul\AppData\Roaming\XBMC\addons\service.watchdog\service.py didn't stop in 5 seconds - let's kill it
22:37:00 T:3936 NOTICE: stop python
22:37:00 T:1716 WARNING: The python script "C:\Users\Paul\AppData\Roaming\XBMC\addons\service.skin.widgets\default.py" has left several classes in memory that we couldn't clean up. The classes include: Window,Monitor,Player
22:37:01 T:3936 NOTICE: stopped
22:37:01 T:3936 NOTICE: destroy
22:37:01 T:3936 NOTICE: closing down remote control service
22:37:01 T:3936 NOTICE: unload sections
22:37:01 T:3936 NOTICE: destroy
22:37:01 T:3936 WARNING: Attempted to remove window 10013 from the window manager when it didn't exist
22:37:01 T:3936 WARNING: Attempted to remove window 10014 from the window manager when it didn't exist
22:37:01 T:3936 WARNING: Attempted to remove window 10015 from the window manager when it didn't exist
22:37:01 T:3936 WARNING: Attempted to remove window 10016 from the window manager when it didn't exist
22:37:01 T:3936 WARNING: Attempted to remove window 10017 from the window manager when it didn't exist
22:37:01 T:3936 WARNING: Attempted to remove window 10018 from the window manager when it didn't exist
22:37:01 T:3936 WARNING: Attempted to remove window 10019 from the window manager when it didn't exist
22:37:01 T:3936 WARNING: Attempted to remove window 10021 from the window manager when it didn't exist
22:37:01 T:3936 WARNING: Attempted to remove window 10107 from the window manager when it didn't exist
22:37:01 T:3936 WARNING: Attempted to remove window 10115 from the window manager when it didn't exist
22:37:01 T:3936 WARNING: Attempted to remove window 10104 from the window manager when it didn't exist
22:37:01 T:3936 NOTICE: closing down remote control service
22:37:01 T:3936 NOTICE: unload sections
22:37:01 T:3936 NOTICE: application stopped...


RE: Another External Player Code, but Very Simple to Setup - acejh1987 - 2013-02-12

Deadspeak - Did you try playing a file with the external player before copying the log? As I can't see anywhere in the log where an external player is attempted to be launched. If you did try playing a file/movie let me know what filename it was.


RE: Another External Player Code, but Very Simple to Setup - deadspeak - 2013-02-12

look like i made a bo bo. When i click on the movie poster (in this case 300) i was expecting the movie to start, it did'nt. When i click on play main file within the movie it opens up the external player. The only issue now is that xbmc does'nt seem to hand of remote control funtion to the external player as none of my remote keys function. This does happen in windows MCE when using the same player.
Thanks for your help so far.


RE: Another External Player Code, but Very Simple to Setup - bluray - 2013-02-12

Can you use "Pastebin" to attach the log instead? It took several pages from this thread for a single log in post #1687. The thread will be cleaner without it....


RE: Another External Player Code, but Very Simple to Setup - Grubby - 2013-02-14

I am getting stuck! I have set it up as shown, but I cant get my 3D iso's to play in 3D on my TV without upscaling the 2D version played. My PC monitor is 2D via DVI and 3DTV via HDMI. I have read I need to disable the 2D monitor, but even with this it still plays as 2D.

Any help would be really appreciated


RE: Another External Player Code, but Very Simple to Setup - sojourner353 - 2013-02-17

Hi all,

Found this thread yesterday looking for a way to integrate TMT5 into XBMC for BD Playback and have got it working great with ISO's & BDMV's in 2D & 3D however I have one question when I press stop on my MCE Remote its stops TMT5 playing but does not close TMT5 and return me to XBMC and I have to close TMT5 manually with a mouse then it shows me XBMC..

Bit of a noob with scripts and done a search of the thread and seen the back button is meant to take me back but its not working for me so any advise would be much appreciated, thanks.

Some specs are, Windows 8 x64, XBMC Frodo, TMT5 v5.3.1.146, Genuine Microsoft MCE Remote used through iMON Manager v8.12.1202


RE: Another External Player Code, but Very Simple to Setup - bluray - 2013-02-17

(2013-02-17, 05:18)sojourner353 Wrote: Genuine Microsoft MCE Remote
If it is MCE remote, press STOP and BACK buttons should return to XBMC......you can try the GREEN button too...


RE: Another External Player Code, but Very Simple to Setup - sojourner353 - 2013-02-17

(2013-02-17, 06:56)bluray Wrote:
(2013-02-17, 05:18)sojourner353 Wrote: Genuine Microsoft MCE Remote
If it is MCE remote, press STOP and BACK buttons should return to XBMC......you can try the GREEN button too...

Neither Back or Green Button is taking me back to XBMC, I have a feeling it has something to do with iMON causing this as it has full control of my remote on my DH102 Case, iMON has its own inbuilt IR Receiver so I'm not using the Microsoft USB one.

Might completely remove iMON and use the MS USB IR Receiver and see the results then.


RE: Another External Player Code, but Very Simple to Setup - Maiisoh - 2013-02-18

I have PowerDVD 12, TMT 5, and TMT 6 on my HTPC. I have a couple of questions and need some help.

1. Does anyone have experience with both PowerDVD 12 and TMT 5? Which player is best for each of these: Blurays, DVD's, 3D?

2. Has anyone gotten TMT 6 to work with XBMC yet? If so, what code did you use?

3. I guess that I'm trying to get pretty complex. What I would like to do is play MKV, AVI, MP4, and M4V files through the XBMC player. Have m2tc, ts, 3D files, ISO files, BDMV files, mpls files, Bluray discs, DVD's, and 3D Bluray discs play through PowerDVD 12 and/or TMT5 (TMT 6) whichever is best for each.

4. Can anyone provide me with the code to accomplish this. I'm pretty new to this. I've seen different post to accomplish parts of each of what I'm trying to do but don't know how to combine each into one file and make it work. Any help would be greatly appreciated. Thanks in advance for your help.