Joined
·
55,661 Posts
I'm trying this for the first time and having an issue...
I successfully start the script on my PC and it shows up on my TiVo in the Music & photos section. However when I select the app all I get is a black screen, and when I check the command window I see a error that says...
I checked the directory where the script is and there is in fact a apples folder with a file called red-hd.png in it, so I'm not sure why this would be happening. Any ideas?
Dan
I successfully start the script on my PC and it shows up on my TiVo in the Music & photos section. However when I select the app all I get is a black screen, and when I check the command window I see a error that says...
Code:
C:\Documents and Settings\Dan>"C:\Program Files\Python\python" C:\hme-vlc\start.py
HME Server for Python 0.17
Skipping: apples - No application class
Skipping: icons - No module named icons
Mon Jan 19 16:24:02 2009 Server Starts
Registering: hmevlc
172.16.1.33:1593 - - [19/Jan/2009 16:24:29] "GET /hmevlc/icon.png HTTP/1.0" 200
-
172.16.1.33:1594 - - [19/Jan/2009 16:24:33] "GET /hmevlc/ HTTP/1.1" 200 -
172.16.1.33:1594 - - [19/Jan/2009 16:24:33] Starting HME: hmevlc
----------------------------------------
Exception happened during processing of request from ('172.16.1.33', 1594)
Traceback (most recent call last):
File "C:\Program Files\Python\lib\SocketServer.py", line 558, in process_request_thread
self.finish_request(request, client_address)
File "C:\Program Files\Python\lib\SocketServer.py", line 320, in finish_request
self.RequestHandlerClass(request, client_address, self)
File "C:\Program Files\Python\lib\SocketServer.py", line 615, in __init__
self.handle()
File "C:\Program Files\Python\lib\BaseHTTPServer.py", line 329, in handle
self.handle_one_request()
File "C:\Program Files\Python\lib\BaseHTTPServer.py", line 323, in handle_one_request
method()
File "C:\hme-vlc\start.py", line 232, in do_GET
self._page(True)
File "C:\hme-vlc\start.py", line 183, in _page
appinst.mainloop()
File "C:\hme-vlc\hme.py", line 1108, in mainloop
while self.active and self.get_event():
File "C:\hme-vlc\hme.py", line 1189, in get_event
handle()
File "C:\hme-vlc\hmevlc\__init__.py", line 146, in handle_active
self.show_top()
File "C:\hme-vlc\hmevlc\__init__.py", line 149, in show_top
self.root.set_image(self.graphics[0])
File "C:\hme-vlc\hme.py", line 1008, in set_image
self.set_resource(Image(self.app, name, f, data), flags)
File "C:\hme-vlc\hme.py", line 709, in __init__
f = open(name, 'rb')
IOError: [Errno 2] No such file or directory: 'apples/red-hd.png'
----------------------------------------
Dan