[PATCH] LaunchPlayer - External Video Player Launcher (to launch third-party players)

  Thread Rating:
  • 3 Votes - 5 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Thread Closed
tknice1 Offline
Member
Posts: 89
Joined: Jul 2008
Reputation: 0
Post: #381
Is everyone getting movie info displayed in Videos? Mine shows headers with no information and I'm certain all of my movies have it. When I browse via Movies the same thumbnails show the information no problem.

I guess I'm having trouble knowing if my problem is with the release or skin that I'm using. Other skins don't work either so I'm wondering if it's the release (and specifically the external player release).

Thanks!

Tom
find
zeltak Offline
Senior Member
Posts: 119
Joined: Oct 2008
Reputation: 0
Post: #382
hi

another guys wondering if it works on linux as well?

thx

Zeltak
find
spiff Online
Grumpy Bastard Developer
Posts: 12,181
Joined: Nov 2003
Reputation: 82
Post: #383
yes, it should work on all platforms

Always read the XBMC online-manual, FAQ and search the forum before posting.
Do not e-mail XBMC-Team members directly asking for support. Read/follow the forum rules.
For troubleshooting and bug reporting please make sure you read this first.
find
dds_fr_06 Offline
Junior Member
Posts: 2
Joined: Feb 2009
Reputation: 0
Location: France
Post: #384
First, sorry for my poor English. All is good with XBMCSetup-Rev17890-jester and Media Player Classic. The only little problem is for accented characters in movie file name. In the file name passed to the player, accented character like "è" is replaced by two characters "è" and the player send the message "File not found". I use Vista in French. I try to change the character set but with default or Western Europe Windows or Western Europe ISO, the result is the same.
Very thanks for your job.
find
WiSo Offline
Team-XBMC Developer
Posts: 2,483
Joined: Oct 2003
Reputation: 0
Location: Germany
Post: #385
Please stay in the user support forum. This forum is for development purposes only.
Or do you wanna fix the the sources?

Always read the XBMC online-manual, FAQ and search the forum before posting.
Do not e-mail XBMC-Team members directly asking for support. Read/follow the forum rules.
For troubleshooting and bug reporting please make sure you read this first.
find
rimmi2002 Offline
Senior Member
Posts: 128
Joined: Jun 2008
Reputation: 0
Post: #386
Does anyone have a eventghost zoomplayer profile that works well? Thanks.

Setup
XBMC Build 33619
ASUS M4A78-EM mobo
AMD X2 Regor 250 Processor
Integrated 780g HDMI graphics.
SP/DIF optical wire for sound
Win 7 Prof 640bit + Onkyo SR606 + Panasonic Viera 50" 720p
find
zag Offline
Team-XBMC Member
Posts: 797
Joined: Oct 2007
Reputation: 7
Location: UK
Post: #387
rimmi2002 Wrote:Does anyone have a eventghost zoomplayer profile that works well? Thanks.

I have one for HIP if thats any help.
find
volenin Offline
Senior Member
Posts: 167
Joined: Jan 2009
Reputation: 0
Question  externalplayer: playing video files from DVD doesn't work Post: #388
Hi,

I wonder if anyone ran into this issue / deficiency: if you setup Xine as an external player for XBMC-Linux and try to play a video file from DVD you'll get an error from Xine (which is not logged, but displayed right into the X session): 'iso9660:// protocol is not supported or appropriate plugin is not installed'.

Fair enough, as trying to play the same video file with Xine outside of XBMC (ie, from under KDE session) referenced through the URL the XBMC constructs (with 'iso9660://' prefix) doesn't work either - gives the same error. In particular, the execution line for xine as it's seen in the log is:


13:50:32 T:2910923664 M:3160915968 NOTICE: ExecuteAppLinux: "/usr/bin/xine" -f -g "iso9660://The Lives of the Others/The Lives of Others - English Subbed (1 of 2).avi"


Is there any way to play video files from DVD through Xine _without_ referencing them via 'iso' prefix? I believe this happens because XBMC does not mount the DVD in the normal way (to the directory path, like '/media/dvd'), at least in my case.... The url above was a result of adding 'dvd' as video source from the video library screen...

Thanks,

Vlad

PS: sorry for a repost - posted similar question originally to the XBMC-Linux board, after which found this dedicated thread...
find
jkasyan Offline
Junior Member
Posts: 15
Joined: Apr 2007
Reputation: 0
Post: #389
I've been using externalplayer to call a batch file which

launches daemon tools to mount my bd iso files
this action is set to autorun powerdvd8
then i monitor to when powerdvd8.exe exits using tasklist.
When powerdvd exits then the batch file ends.

The batch file, when run directly on the file and XBMC is not running works perfectly. When XBMC is running, my machine locks up hard. It doesn't matter if it's launched via externalplayer or not, if XBMC is running, powerdvd8 will quickly kill the pc. My gut feeling is that is has to do with my hardware, as xbmc is using the optical audio out, and powerdvd at least runs until the DTS/TruHD audio starts up.

To try to work around this, i've tried using taskkill to exit xbmc entirely when called. If i run the bat file manually it correctly shutsdown xbmc, but doesn't when called via externalplayer.

So, a couple of questions:
Is there some process protection which disallows the external call from killing xbmc?
Could someone else please try running xbmc and powerdvd8 with spdif passthrough enabled to play a BD? I'm wondering if it's something machine/setting specific or not...

The batch file is below for anyone interested:
Code:
@echo off
taskkill -fi "imagename eq XBMC.exe"
"C:\Program Files\DAEMON Tools Lite\daemon.exe" -unmount_all
"C:\Program Files\DAEMON Tools Lite\daemon.exe" -mount 0,%1
ping 127.0.0.1 -n 60 > nul
:checkagain
set tempfile=powerdvdrunning.txt
del %tempfile% > nul
tasklist > %tempfile%
type %tempfile% | find /i "PowerDVD8.exe"
if errorlevel 0 if not errorlevel 1 goto IsRunning
:exit
del %tempfile%
"C:\Program Files\DAEMON Tools Lite\daemon.exe" -unmount_all
"C:\Program Files\XBMC\XBMC.exe" -fs
exit
:IsRunning
ping 127.0.0.1 -n 15 > nul
goto checkagain
find
tiben20 Offline
Team-XBMC Developer
Posts: 1,003
Joined: Jun 2008
Reputation: 16
Post: #390
i just created a patch on trak http://trac.xbmc.org/ticket/6383
its adding the capability to have multiple external players base on file extension
find
Thread Closed