![]() |
|
XBMC Slingbox Client - Development Status - Printable Version +- XBMC Community Forum (http://forum.xbmc.org) +-- Forum: Development (/forumdisplay.php?fid=32) +--- Forum: Development (/forumdisplay.php?fid=93) +--- Thread: XBMC Slingbox Client - Development Status (/showthread.php?tid=82597) |
- lottomotto - 2011-02-13 15:51 I know it might be a pain, but could you post a precompiled Xbmc live? Thanks for everything - Harry Muscle - 2011-02-13 16:40 astroboy2 Wrote:I tryed http://www.megaupload.com/?d=IPXL13WO. I unziped the file then run XBMC.exe. The application started but I can't find anyting about SlingBox in program or video. I did a seach for Sling* in program file and in AppData but I have 0 result. You need to manually add a Slinbox source like outlined. It's the same principle as adding a MythTV source. Simply go to your video section and go Add Source. Hope that helps, Harry - Harry Muscle - 2011-02-13 16:41 lottomotto Wrote:I know it might be a pain, but could you post a precompiled Xbmc live? If I get a chance to setup a linux environment for compiling I will but no promises ![]() Harry - chris0147 - 2011-02-13 17:00 Harry Muscle Wrote:Yup, both are C++ documents, one is the actual c++ source file and the other is the c++ header file. As for answering your question, sorry no idea. Great, I will try it out and if i have any problem, is it ok if i could pm you? however, how i can watch a stream on my form? what the slingboxlib suppose to do?? - Harry Muscle - 2011-02-13 23:08 chris0147 Wrote:Great, I will try it out and if i have any problem, is it ok if i could pm you? The purpose of the SlingboxLib is to allow anyone who is programming in C++ to include this library in their program (as long as they follow the GPL License rules of course) and have their program interact with a Slingbox at a low level. It does not decode the stream or display it, it does however communicate with the Slingbox and allow you to receive the stream. From there you need your own code to decode it (not decrypt, just decode ... ie: process a wmv format stream) and actually display it. I do not know of any method that will allow you to use this (or the SlingboxSDK) with VB.NET ... doesn't mean there isn't a way, but I don't know of any since I don't program in VB.NET. Thanks, Harry - Atv2 - 2011-02-13 23:44 tolax Wrote:XBMC and Slingbox support running on a $99 ATV 2. Now that would be awesome. Once you put the code in SVN should it theoretically work?TolaxThis should be possible now that we have xbmc fully ported to the ATV 2. How can we setup to stream content from Slingbox Pro-HD to Apple tv already running xbmc? tedbone Wrote:I know. The thought of this gives me a "techno-boner!" As I understand it, the current ATV2 jailbreak is tethered, so each ATV2 reboot requires a Mac OS yo inject the XBMC code to run it. However, I'm guessi g once they figuere out a non-tethered JB, the SVN code should work every time (don't hold me to this - just theory).Apple TV 2 is untethered now so how can we get this to work, anyone know? - chris0147 - 2011-02-15 03:54 Harry Muscle Wrote:The purpose of the SlingboxLib is to allow anyone who is programming in C++ to include this library in their program (as long as they follow the GPL License rules of course) and have their program interact with a Slingbox at a low level. It does not decode the stream or display it, it does however communicate with the Slingbox and allow you to receive the stream. From there you need your own code to decode it (not decrypt, just decode ... ie: process a wmv format stream) and actually display it. Thanks Harry, so does the SlingboxLib allows me to enter the finder id, open ports, password before I would receive the stream?
- chris0147 - 2011-02-17 01:59 Harry Muscle, could you answer this please? so does the SlingboxLib allows me to enter the finder id, open ports, password before I would receive the stream?
- Harry Muscle - 2011-02-17 05:29 chris0147 Wrote:Thanks Harry, so does the SlingboxLib allows me to enter the finder id, open ports, password before I would receive the stream? If you look at the header file you'll see all the functions that are part of the library. As you'll notice there is none for the Finder ID, it requires an actual IP address or domain name. So basically what you need is address of the Slingbox, port number, whether to login as admin or viewer and the password. If you'd like to see an example of how to implement the SlingboxLib I'd recommend checking out the patch I submitted for XBMC, since part of that patch is the SlingboxLib and the other main part is actually implementing it in XBMC. Especially look at the CSlingboxFile::Open function. Thanks, Harry - skunkm0nkee - 2011-02-17 23:15 Great work Harry! I've been hoping to be able to access SlingBox streams through XBMC for a while now and it's finally happening. ![]() I'm able to view the stream but am having problems changing channels, I presume I have to sniff out the remote control codes for my system. Any pointers as to how I do that? |