I've been working with integrating BeyondTV into XLobby for several months now, and I've learned a few things along the way. (Maybe I did this because I was too cheap to BeyondMedia, or maybe because I found Mediaplayer Classic was better at viewing wirelessly-networked video on my client laptop than BTV-Link. Mostly because I'm a tinkerer at heart.)
I've also put together a skin that mimics BTV's interface to increase the WAF. But don't ask me to post it, because most of the images come from Snapstream (look in "C:\Program Files\SnapStream Media\Beyond TV 3\FSMedia\Images"), and the rest from Colby. Anyway, here are my tips:
* BTV Command-line calls: http://www.snapstream.com/support/help_file/btv/commandlinecalls.htm
* Don't bother with the "exclusivefs" mode, once you switch active windows (including xmovewindow) it goes back to "windowed".
* Speaking of xmovewindow, I don't use it because there are no documented API commands. If someone wants to reverse-engineer these (spy or girder?), please post! Still not the best solution, because in my experience an undocumented API tends to change with the new versions.
* In BTV, I setup multiple recording folders (e.g. "Sports", "Dramas", "Kids" etc.) and select the appropriate folder when I select a show to record. Necessary step if you want some hiearchy to your shows (and easier for me than setting up DB filtering in my Xlobby skin).
* Here are the meta-masks you need to import your videos:
\\(?<folder>.*)\\(?<name>.*)-20(?<year>.*)-(?<month>.*)-(?<day>.*)-(?<part>.*)\..*mpg
\\(?<name>.*)-20(?<year>.*)-(?<month>.*)-(?<day>.*)-(?<part>.*)\..*mpg
(Import Type=custom, Folder=container)
* In my skin, the category is setup as:
database=videos
display=%name% %month%-%day%-%year%
layout=nocover default
(folders get two little dashes after them, but its more readable than plain old file names)
* BTV prevents any screen-saver or power-saver from coming on when the ViewScape is open, no way to override it. I added a timer event to shutdown the ViewScape at 2am (we're always asleep by then) so power-saver can kick in overnight. The "/closegui" switch does the trick.
* Once you're in BTV there's no shortcut back to Xlobby, so my trick uses my ATI RemoteWonder. I just map the "A" button to switch to Xlobby, and the "B" button to switch to BeyondTV using cmdow:
http://www.commandline.co.uk/cmdow/
A button: "c:\tools\cmdow.exe "xlobby" /ACT"
B button: "C:\Program Files\SnapStream Media\Beyond TV 3\BTVD3DShell.exe" (only one BTV GUI can run at a time, so you just call the executable and the GUI comes up, whether it's running or not)
* My laptop is a Xlobby fat client, so although the skin is the same between the server and client, you have to go in and change the directory of the "execute file" commands for BTV:
on server: "C:\Program Files\SnapStream Media\Beyond TV 3\BTVD3DShell.exe"
on client: "C:\Program Files\SnapStream Media\Beyond TV Link\BTVD3DShell.exe"
Hope someone finds my ramblings here useful.