Sorry, work has had me really hopping (new locations opening, etc). I haven't had a chance to really dig into it. I like the idea of the format change if xLobby will support BMP.
Maybe this weekend.
cmhardwick wrote:turn off the splash screen supression. TT will substitute the background.bmp file for the normal splash screen I believe.
cmhardwick wrote:My bad
I believe you will actually have to open the jpg file in an editor and resave it as an actual bmp file to work. Just changing the name won't because regardless of the name, it's still a jpg file.
This works on my machine, version 2.4.1.4. Running with /nosplash it will come up with the background.bmp file on the screen.
cmhardwick wrote:I was also able to get this automated using a small batch file and a free software from LEAD software that allows commandline image file conversions. I'll upload details tonight. This would only work reliably, I would think, on a fast network and fast machine. The event to do this is OS/Execute file, passing along the image parameter (i believe it is, from the Movies database). This is executed as the first step in the "play movies" event.
basically, the batch file deletes the existing background.bmp file from the theatertek directory, calls the conversion program which converts the coverart file and puts the converted file in the theatertek directory. then it renames this file to background.bmp (you can't rename with this conversion program). AFter that, the other steps in the event run (close overlay, clear playlist, launch theatertek, etc). This worked consistently on my system so when I clicked PLAY movie, the theatertek screen opened on my other monitor with the coverart from the movie, then the movie loaded and started playing.
Not especially clean, but it works for me.
@echo off
del "C:\Program Files\TheaterTek\TheaterTek DVD 2.0\background.bmp"
cd \leadcmd\bin
c:\leadcmd\lfc %1 "C:\Program Files\TheaterTek\TheaterTek DVD 2.0" /f6 /noui
ren "c:\Program Files\TheaterTek\TheaterTek DVD 2.0\folder.bmp" background.bmp
rem pause
cmhardwick wrote:I manually copy the appropriate coverart jpg to the individual movie folders and rename it to folder.jpg. I find the correct movie cover by simply opening windows explorer in thumbnail view so I can see the images. There has been talk of someone writing a script that would read the xml export file and do this automatically, but I haven't seen anything on it. I'll have to dig into scripting (been along time since I've done programming or scripting) to see if I can come up with something. It will be a long time though as I completely new to dealing with xml databases.