Posts: 505
Joined: May 2010
Reputation:
4
Hey giftie
No advice for my "unique" problem?
Posts: 20
Joined: Jan 2014
Reputation:
0
I have everything working on this as intended, FRODO and the .6 version on Win7 except the home automation script. I've made sure the settings are toggled to enabled. I've also downloaded the home_automation.py script for FRODO and tried it. I see the triggers firing off in the log and all, but eventghost just does not see the trigger. I verified the port is 8278 in the script and the receiver in EG. I also tried adding a line to launch a vbs script instead of using event ghost and still doesn't run:
# Movie Theatre Intro
elif trigger == "Movie Theater Intro" and ha_settings[ "ha_mte_intro" ]:
pass
# place code below this line
subprocess.Popen(['C:/SCRIPTS/xbmc2homeseer/scene-movie.vbs'], shell=True, creationflags=subprocess.SW_HIDE)
self.broadcastUDP("<b>CE_Automate<li>movie_theatre_intro</b>" )
So question is, is this supposed to work? There are so many different answers/solutions configs when searching for this topic. I would be content as to just using a line in the script to run this vbs script (which works). Any ideas?
Posts: 83
Joined: Jun 2009
Reputation:
0
Excellent plug in.
I am running an Gotham ALPHA 13 of xbmc and ACE skin release. CE 3.0.6
It seems a couple of the OUTRO video sections do not play if i have a intro video as well.
I have come up with my own solution not using those options but i am not sure why that is.
I am very late to the party. Does the home theater mega pack still exist or is there any alternative?
I have been on you tube and demo world downloading a few videos but want a few more.
Mainly pre show entertainment , coming soon and feature presentation videos.
Thanks for all the hard work on the plug in.
Posts: 20
Joined: Jan 2014
Reputation:
0
Thanks that did it. This thing rocks, thanks for it. Going to try tieing in 3.0.7 with my wifi2ir device for 3d movies now...
Posts: 20
Joined: Jan 2014
Reputation:
0
3.0.7 is working except trivia question and answer slides do not work. Just single slides.
Posts: 592
Joined: Feb 2013
Reputation:
30
Until the final release, you will need to edit the xml files and remove any "N/A" entries you see.
Posts: 20
Joined: Jan 2014
Reputation:
0
This did not work, but it can wait.
I am more concerned with the reporting of what is playing for a 3D movie.
I have edited the new home_automation.py to include:
def broadcastUDP( self, data, port = 8278 ): # XBMC's former HTTP API output port is 8278
IPADDR = '255.255.255.255'
PORTNUM = port
s = socket.socket(socket.AF_INET, socket.SOCK_DGRAM, 0)
if hasattr(socket,'SO_BROADCAST'):
s.setsockopt(socket.SOL_SOCKET, socket.SO_BROADCAST, 1)
s.connect((IPADDR, PORTNUM))
s.send(data)
s.close()
So for the triggers I have:
#3D Intro
elif trigger == "3D Intro" and ha_setting [ "ha_3d_intro" ]:
self.broadcastUDP( "<b>CE_Automate<li>3D_intro</b>" )
etc..
When playing a 3D movie, everything works except when I get to this trigger, it broadcasts the one for intermission and then no more are broadcasted, (countwon, audio format, movie). I tried turning off the only trigger once for multiple videos setting and got the same result.
I hope this makes since. I think the elif trigger or ha_setting is not reporting correctly
Posts: 20
Joined: Jan 2014
Reputation:
0
I have also noticed this still plays rating, main attraction and audio videos from the 2d folders when I have these set to not play in the 3d settings screen.