Giant Bomb on Media Centers

  • 86 results
  • 1
  • 2
Avatar image for buggex
BuggeX

121

Forum Posts

7568

Wiki Points

0

Followers

Reviews: 0

User Lists: 5

#51  Edited By BuggeX
@jaytima: For the moment no :( 
1) The Whiskey API  currently does not support login for HD videos
2) I don't know / have the skills to "hack" HD videos in ( and I really don't want to because it seems kinda duchi )
3) I have been told to currently not implement HD videos, by a Whiskey staffer, because of bandwidth issues.
Avatar image for jaytima
jaytima

16

Forum Posts

0

Wiki Points

0

Followers

Reviews: 0

User Lists: 0

#52  Edited By jaytima

Fair enough, thanks for replying and thanks for the great add-on :D

Avatar image for crazy_horse
Crazy_Horse

59

Forum Posts

450

Wiki Points

0

Followers

Reviews: 0

User Lists: 2

#53  Edited By Crazy_Horse

Any word on the video sorting issue for the boxee box app?

Avatar image for buggex
BuggeX

121

Forum Posts

7568

Wiki Points

0

Followers

Reviews: 0

User Lists: 5

#54  Edited By BuggeX
@Crazy_Horse:  yes, i'm currently fixing it, and will commit a new version to Boxee tomorrow, it should be up within 2 days 

Avatar image for buggex
BuggeX

121

Forum Posts

7568

Wiki Points

0

Followers

Reviews: 0

User Lists: 5

#55  Edited By BuggeX

Updated the Boxee app. 
Fixed sorting problem, added the ability to watch live streaming from justin.tv/giantbomb

Avatar image for sully
sully

86

Forum Posts

17

Wiki Points

0

Followers

Reviews: 0

User Lists: 2

#56  Edited By sully

I picked up an Apple TV 2 today and immediately shoved XBMC onto it. :) Was surprised and happy to see a Giant Bomb video add-on and installed it, but unfortunately there seems to be an issue: I get the following issue (sent to xbmc.log): 

17:57:35 T:165810176 M: 88510464  NOTICE: -->Python Interpreter Initialized<--

17:57:36 T:165810176 M: 88498176   ERROR: Error Type: <type 'exceptions.ImportError'>
17:57:36 T:165810176 M: 88498176   ERROR: Error Contents: No module named whimai.wm
17:57:36 T:165810176 M: 88498176   ERROR: Traceback (most recent call last):
                                              File "/var/mobile/Library/Preferences/XBMC/addons/plugin.video.giantbomb/addon.py", l$
                                                import whimai.wm as wm  
                                            ImportError: No module named whimai.wm
17:57:36 T:90595328 M: 88498176   ERROR: GetDirectory - Error getting plugin://plugin.video.giantbomb/
17:57:36 T:90595328 M: 88498176   ERROR: CGUIMediaWindow::GetDirectory(plugin://plugin.video.giantbomb/) failed
  
I've written Python code in the past so I'll take a look at the issue, but I suppose it's likely that all I need to do is install the missing module - probably from http://code.google.com/p/whimais/ ? How's that sound?
Avatar image for ceramicsteve
Ceramicsteve

34

Forum Posts

0

Wiki Points

0

Followers

Reviews: 0

User Lists: 0

#57  Edited By Ceramicsteve

I am also interested to see how to get giantbomb plugin to run on xbmc on appletv2. I did some looking and whimai.wm is already copied on to addons under /resources/lib

Avatar image for buggex
BuggeX

121

Forum Posts

7568

Wiki Points

0

Followers

Reviews: 0

User Lists: 5

#58  Edited By BuggeX
@sully: @Ceramicsteve:  unfortunatelyI don't own an AppleTV, so this is a little hard for me to test. Have you tried moving the folder "whimai" from  "resources/lib" to  " /var/mobile/Library/Preferences/XBMC/addons/plugin.video.giantbomb/" ?
Avatar image for sully
sully

86

Forum Posts

17

Wiki Points

0

Followers

Reviews: 0

User Lists: 2

#59  Edited By sully

It looks like the Apple TV 2G's mappings of special://whatever/ are different from the Apple TV 1G, so the Python add-on looks to the wrong directory for files. I drew that conclusion after looking at this page:  http://wiki.xbmc.org/?title=Special_protocol 
 
So to fix the issue, you can simply replace the file located at  /private/var/mobile/Library/Preferences/XBMC/addons/plugin.video.giantbomb/addon.py with this file, or you can manually replace these lines in addon.py:  

 _resdir = "special://home/addons/" + _id + "/resources"
_datadir = "special://profile/addon_data/" + _id 

 
With: 

 _xbmcprefdir = "/private/var/mobile/Library/Preferences/XBMC"

_resdir = _xbmcprefdir + "/addons/" + _id + "/resources"
_datadir = _xbmcprefdir + "/userdata/addon_data/" + _id 

This solution does indeed hard-code the directory mappings, but until XBMC releases an update that fixes the auto-mapping using special:// it'll have to do. 
 
@Buggex: I am seeing an error in the log that reads "NOTICE: ERROR IN DATA FILE" at startup but I'm not sure it's actually causing any problems?
Avatar image for siphillis
Siphillis

1357

Forum Posts

6549

Wiki Points

0

Followers

Reviews: 2

User Lists: 17

#60  Edited By Siphillis

APIs.  Gotta love 'em.

Avatar image for buggex
BuggeX

121

Forum Posts

7568

Wiki Points

0

Followers

Reviews: 0

User Lists: 5

#61  Edited By BuggeX
@sully: Cool dude 
I will take you addon.py and create a zip file people can use for AppleTV  
 
"NOTICE: ERROR IN DATA FILE  " should only appear the very first time you start the plugin. If this happens all the time it should be addressed. The problem with this is that the startup will take a very long time.
Avatar image for sully
sully

86

Forum Posts

17

Wiki Points

0

Followers

Reviews: 0

User Lists: 2

#62  Edited By sully

There may be some issue with the script writing to /private/var/mobile/Library/Preferences/XBMC/userdata/addon_data/plugin.video.giantbomb/video.dat , but even with that solved the script appears to parse through 3000+ (at the moment, 3676) video items every time it runs, with a resulting long load time. I think I'll take a crack as a mildly revised version of the script that alters how the categories and files are pulled down? Maybe we can optimize the checks for new content.

Avatar image for buggex
BuggeX

121

Forum Posts

7568

Wiki Points

0

Followers

Reviews: 0

User Lists: 5

#63  Edited By BuggeX
@sully: How it works currently on the XBMC/Plex plugin: 
1) The very first time it parse through all 3000+ videos and stores there info ( resulting in very long load times, because it req. many calls to the api ) 
2) Subsequently very time you start the the plugin after that, it only adds new videos ( results in a very short load time, because it  usually only req. 1-2 call to the api )  
 
Im not sure that this can be done any faster, but if you have an idea, Im all ears.
 
How it works on the Boxee plugin: 
1) There is no data file  
2) Start of plugins is very fast
3) Every category calls a search query in the API , a  search query gives 20 videos pr call ( load times  depend on number of videos in categorie )
Avatar image for sully
sully

86

Forum Posts

17

Wiki Points

0

Followers

Reviews: 0

User Lists: 2

#64  Edited By sully

After taking a deeper look last night I think you have it as optimized as it'll go, actually - a slightly faster version might be produced using the video feeds instead of the API, but that seems questionable too. I really like what you did with the categories, by the way - having it hosted externally where it can be centrally updated is very smart. 
 
I'll give implementing an add-on using the XML feeds a try today, mostly just to get re-acquainted with Python.

Avatar image for spicyrichter
SpicyRichter

748

Forum Posts

102

Wiki Points

0

Followers

Reviews: 0

User Lists: 0

#65  Edited By SpicyRichter

Hey BuggeX, I'm having a bit of trouble with this addon, when I run it, it creates the video.dat file (about 3 meg), but then it locks XBMC
Here's my debug log:

17:53:01 T:3176 M:2563690496   DEBUG: CApplication::OnKey: 61453 pressed, action is Select
17:53:01 T:3176 M:2563612672 DEBUG: CApplication::ExecuteXBMCAction : Translating ActivateWindow(10024,"plugin://plugin.video.giantbomb/")
17:53:01 T:3176 M:2563612672 DEBUG: CApplication::ExecuteXBMCAction : To ActivateWindow(10024,"plugin://plugin.video.giantbomb/")
17:53:01 T:3176 M:2563612672 DEBUG: Activating window ID: 10024
17:53:01 T:3176 M:2563612672 DEBUG: Checking if window ID 10024 is locked.
17:53:01 T:3176 M:2563612672 DEBUG: ------ Window Deinit (Home.xml) ------
17:53:01 T:3176 M:2563612672 DEBUG: ------ Window Deinit (DialogFavourites.xml) ------
17:53:01 T:3176 M:2563403776 DEBUG: ------ Window Init (MyVideo.xml) ------
17:53:01 T:3176 M:2563403776 INFO: Loading skin file: MyVideo.xml
17:53:04 T:3176 M:2560024576 DEBUG: CGUIMediaWindow::GetDirectory (plugin://plugin.video.giantbomb/)
17:53:04 T:3176 M:2560024576 DEBUG: ParentPath = [plugin://plugin.video.giantbomb/]
17:53:04 T:3176 M:2560008192 DEBUG: XFILE::CPluginDirectory::StartScript - calling plugin Giant Bomb('plugin://plugin.video.giantbomb/','0','')
17:53:04 T:3176 M:2560008192 INFO: initializing python engine.
17:53:04 T:3176 M:2560008192 DEBUG: new python thread created. id=4
17:53:04 T:3176 M:2560008192 DEBUG: XFILE::CPluginDirectory::WaitOnScriptResult - waiting on the Giant Bomb plugin...
17:53:04 T:1680 M:2560008192 DEBUG: thread start, auto delete: 0
17:53:04 T:1680 M:2560008192 DEBUG: Python thread: start processing
17:53:04 T:1680 M:2559930368 DEBUG: msg: 'import site' failed; use -v for traceback
17:53:04 T:1680 M:2559930368 NOTICE: -->Python Interpreter Initialized<--
17:53:04 T:1680 M:2559930368 DEBUG: XBPyThread::Process - The source file to load is C:\Users\Richter\AppData\Roaming\XBMC\addons\plugin.video.giantbomb\addon.py
17:53:04 T:1680 M:2559930368 DEBUG: XBPyThread::Process - Setting the Python path to C:\Users\Richter\AppData\Roaming\XBMC\addons\plugin.video.giantbomb;C:\Users\Richter\AppData\Roaming\XBMC\addons\script.module.simplejson\lib;C:\Users\Richter\AppData\Roaming\XBMC\addons\script.module.beautifulsoup\lib;C:\Program Files (x86)\XBMC\addons\script.module.pil\lib;C:\Program Files (x86)\XBMC\addons\script.module.pysqlite\lib;special://xbmc/system/python/DLLs;special://xbmc/system/python/Lib;special://xbmcbin/system/python/python24.zip;special://xbmc/system/python\DLLs;special://xbmc/system/python\lib;special://xbmc/system/python\lib\plat-win;special://xbmc/system/python\lib\lib-tk;C:\Program Files (x86)\XBMC
17:53:04 T:1680 M:2559930368 DEBUG: XBPyThread::Process - Entering source directory C:\Users\Richter\AppData\Roaming\XBMC\addons\plugin.video.giantbomb
17:53:04 T:1680 M:2559627264 INFO: Loading skin file: DialogProgress.xml
17:53:04 T:1680 M:2559619072 DEBUG: ------ Window Init (DialogProgress.xml) ------
17:53:05 T:1680 M:2559315968 NOTICE: SETTINGS UPDATE OK
17:53:05 T:1680 M:2559315968 NOTICE: ERROR IN DATA FILE
17:53:09 T:1412 M:2555846656 DEBUG: CDDSImage::Compress - using DXT1 (min error is: 18.71:0.00)
17:53:26 T:2156 M:2555613184 DEBUG: Thread 2156 terminating (autodelete)
17:53:29 T:4084 M:2556383232 DEBUG: Thread 4084 terminating (autodelete)
17:53:39 T:1412 M:2551918592 DEBUG: Thread 1412 terminating (autodelete)
Avatar image for buggex
BuggeX

121

Forum Posts

7568

Wiki Points

0

Followers

Reviews: 0

User Lists: 5

#66  Edited By BuggeX
@SpicyRichter: Hey, will look into it
Avatar image for spicyrichter
SpicyRichter

748

Forum Posts

102

Wiki Points

0

Followers

Reviews: 0

User Lists: 0

#67  Edited By SpicyRichter
@BuggeX:  Running windows 7, XBMC 10 with Aeon MQ 2 skin
Avatar image for zero_
zero_

2105

Forum Posts

378

Wiki Points

0

Followers

Reviews: 0

User Lists: 6

#68  Edited By zero_

Hey, lovin' the Boxee app, it's my most used thing on the Boxee funnily enough.
Anyway, I'm considering purchasing a WM membership and want to watch the member-exclusive Happy Hours on the Boxee GiantBomb app. I can't see a way to login from the app - is this possible?
 
Cheers

Avatar image for ceramicsteve
Ceramicsteve

34

Forum Posts

0

Wiki Points

0

Followers

Reviews: 0

User Lists: 0

#69  Edited By Ceramicsteve

@Sully got your addon to load up on Appletv2 XBMC i don't have a subscription to see the content but everything before the content loaded up. Might be worth it if the HD content didn't eat up bandwidth =D

Avatar image for talus
Talus

3

Forum Posts

0

Wiki Points

0

Followers

Reviews: 0

User Lists: 0

#70  Edited By Talus

I can't get this add-on to work in XBMC on Apple TV 2.  I keep receiving the following error: "Error: script failed!: addon.py".  Other video plug-ins work fine. 

Apple TV is 4.2.1 and XBMC is 11.0.0 April 2011 build.

Avatar image for buggex
BuggeX

121

Forum Posts

7568

Wiki Points

0

Followers

Reviews: 0

User Lists: 5

#71  Edited By BuggeX
@Zero_: This is  unfortunately  beyond my  abilities, but I have heard that the Whiskey guys them self is working on an app, that does just that
Avatar image for xantar
xantar

27

Forum Posts

44

Wiki Points

0

Followers

Reviews: 0

User Lists: 0

#72  Edited By xantar
Avatar image for billisbrother
Billisbrother

2

Forum Posts

0

Wiki Points

0

Followers

Reviews: 0

User Lists: 0

#73  Edited By Billisbrother
Hi ! 
first of all - great work! 
I use the plex plugin (0.9.2) on a mac mini (late 2009) and on my macbook pro (current model). It works just swimmingly on the mbp (also within plex),  
but on the mini the video is kinda 'choppy'. for a second the video 'jumps'.  both macs are attached to the internet via the same WLAN. 
--> it is not a bad internet connection. other online plex plugins, like southpark or daily show, work fine on the plex-powered mini.  
also, it cannot be something like the mini is overwhelmed with the video playback .. there should be plenty of power available for this. 

Any ideas what causes this or what I can do? 
 - cheers
Avatar image for buggex
BuggeX

121

Forum Posts

7568

Wiki Points

0

Followers

Reviews: 0

User Lists: 5

#74  Edited By BuggeX

@Billisbrother: sound wiered, have you tried the Low video quality setting? I have an old mac mini some where will try to find it and see whats up

Avatar image for kyotocafe
kyotocafe

4

Forum Posts

0

Wiki Points

0

Followers

Reviews: 0

User Lists: 2

#75  Edited By kyotocafe

Any plan to support the preeden version of XBMC?

Avatar image for buggex
BuggeX

121

Forum Posts

7568

Wiki Points

0

Followers

Reviews: 0

User Lists: 5

#76  Edited By BuggeX

@kyotocafe: Currently no. Whiskey Media will sone release there own plugins/apps. I have stop all development on my plugins for now.

Avatar image for sp0rkeh
sp0rkeh

45

Forum Posts

0

Wiki Points

0

Followers

Reviews: 0

User Lists: 0

#77  Edited By sp0rkeh

It looks like this plugin was updated at some point today in the XBMC repository.  I'm a little confused, seeing as how I'm just reading this thread for the first time and it appears you've stopped development on it.  Is the new version the official version that you speak of in your last post?  I ask this because I noticed it directs you to a URL on this domain to link an account, which suggests to me that it's officially endorsed on some level. 
 
In any event, thanks for the plugin.  I had never heard of Giant Bomb prior to seeing the plugin in the XBMC repo several months ago.  After discovering it I went through and watched all of the Quick Looks and loved every minute of it.

Avatar image for buggex
BuggeX

121

Forum Posts

7568

Wiki Points

0

Followers

Reviews: 0

User Lists: 5

#78  Edited By BuggeX

@sp0rkeh: Currently both the XBMC and BOXEE plugin has been replaced with the official Whiskey Media plugins. Cool to hear that you enjoyed my plugin :)

Avatar image for jaytima
jaytima

16

Forum Posts

0

Wiki Points

0

Followers

Reviews: 0

User Lists: 0

#79  Edited By jaytima

Is there any way to go back to the old one?

Avatar image for jaytima
jaytima

16

Forum Posts

0

Wiki Points

0

Followers

Reviews: 0

User Lists: 0

#80  Edited By jaytima

nvm found it

for anyone else: google for plugin.video.giantbomb-2.0.3.zip, throw that on a usb stick or ftp it over then choose install addon from zip file

Avatar image for rmanthorp
rmanthorp

4654

Forum Posts

3603

Wiki Points

0

Followers

Reviews: 1

User Lists: 14

#81  Edited By rmanthorp  Moderator

Amazing!

Avatar image for kalmis
kalmis

1745

Forum Posts

6127

Wiki Points

0

Followers

Reviews: 115

User Lists: 6

#82  Edited By kalmis

This works on my old Xbox like a charm still.

Avatar image for asantosbr
asantosbr

215

Forum Posts

4

Wiki Points

0

Followers

Reviews: 0

User Lists: 2

#83  Edited By asantosbr

How do I install the new official plug Giant Bomb Plug in on XBMC?

Thanks

Avatar image for matt
matt

1094

Forum Posts

32

Wiki Points

0

Followers

Reviews: 1

User Lists: 5

#84  Edited By matt

@BuggeX: I just want to say thanks for all the time and work you put into the plugin before the official one came out, I really loved using it :)

Avatar image for thor_molecules
Thor_Molecules

792

Forum Posts

10

Wiki Points

0

Followers

Reviews: 0

User Lists: 0

#85  Edited By Thor_Molecules

i'd kill for a Giantbomb plugin for PS3 Media Server, but it's not really that popular, so it probably won't ever happen. I have used it to stream 1080p content to my PS3 for years now.

Avatar image for buggex
BuggeX

121

Forum Posts

7568

Wiki Points

0

Followers

Reviews: 0

User Lists: 5

#86  Edited By BuggeX

@Matt: thanks duder, glade to hear

@Buckfitches: could be interesting, maybe I will look into it if I get the time