|
| Author |
Message |
greymatr
Joined: 29 Sep 2009 Posts: 4
|
Posted: Tue Sep 29, 2009 11:57 pm Post subject: |
|
|
| Thank you! The new plugin is working great now, all the dvds that werent showing up before are now showing up correctly. |
|
| Back to top |
|
 |
Tgrim1
Joined: 01 Jul 2008 Posts: 29
|
Posted: Wed Sep 30, 2009 10:28 am Post subject: |
|
|
| The new plugin works for me now also, thanks! |
|
| Back to top |
|
 |
cmaino
Joined: 30 Sep 2009 Posts: 1
|
Posted: Wed Sep 30, 2009 11:40 pm Post subject: |
|
|
| Which directory does the plugin get installed in on MacOS? |
|
| Back to top |
|
 |
rdian06
Joined: 12 Apr 2008 Posts: 1420
|
Posted: Thu Oct 01, 2009 1:48 am Post subject: |
|
|
| cmaino wrote: | Which directory does the plugin get installed in on MacOS? |
Are you using pyTivo directly or via pyTivoX?
For pyTivo, it's in the pyTivo/plugins folder.
For pyTivoX, it's inside the app bundle at /pyTivoX.app/Contents/Resources/pyTivo-wmcbrine/plugins/. I think. I don't use pyTivoX so I'm not really sure if it will work. |
|
| Back to top |
|
 |
dbw
Joined: 09 Oct 2009 Posts: 2 Location: Orange NSW Australia
|
Posted: Fri Oct 09, 2009 2:15 am Post subject: Can't See to get this plugin to work |
|
|
Hi
I can't seem to get this plugin to work correctly on my Windows Home Server using an Australian HD Tivo. I am using the latest version of the plugin, the latest WMCbrine PyTivo and v 0.98 of FFMPEG. I am getting an error message in the debug log which I have pasted below. It seems likely it is some kind of compatibility issue between my version of PyTivo and the DVD plugin. All other PyTivo functions work fine Thoughts anyone?
Thanks for your help
2009-10-10 13:00:34,328 DEBUG pyTivo.dvdvideo.vobstream: CACHE HIT! D:\shares\DVD\The Day After Tomorrow\__T00.mpg
2009-10-10 13:00:34,328 ERROR pyTivo: Exception during request from ('192.168.1.9', 33895)
Traceback (most recent call last):
File "C:\Python26\lib\SocketServer.py", line 558, in process_request_thread
self.finish_request(request, client_address)
File "C:\Python26\lib\SocketServer.py", line 320, in finish_request
self.RequestHandlerClass(request, client_address, self)
File "C:\Program Files\pyTivo\httpserver.py", line 56, in __init__
client_address, server)
File "C:\Python26\lib\SocketServer.py", line 615, in __init__
self.handle()
File "C:\Python26\lib\BaseHTTPServer.py", line 329, in handle
self.handle_one_request()
File "C:\Python26\lib\BaseHTTPServer.py", line 323, in handle_one_request
method()
File "C:\Program Files\pyTivo\httpserver.py", line 82, in do_GET
self.handle_query(query, tsn)
File "C:\Program Files\pyTivo\httpserver.py", line 132, in handle_query
method(self, query)
File "C:\Program Files\pyTivo\plugins\dvdvideo\dvdvideo.py", line 340, in QueryContainer
video.update(self.metadata_full(f.name, tsn))
File "C:\Program Files\pyTivo\plugins\dvdvideo\dvdvideo.py", line 254, in metadata_full
["%s" % (v) for k, v in vobstream_options.items()] +
NameError: global name 'compatible' is not defined |
|
| Back to top |
|
 |
TheBayer
Joined: 23 Aug 2009 Posts: 33
|
Posted: Fri Oct 09, 2009 7:15 pm Post subject: |
|
|
Strange, that should have errored here too. I don't quite know why it works here. The fix is as follows:
data['vHost'] = (
['TRANSCODE=%s, %s' % ('YES', 'All DVD Video is re-encapsulated')] +
['SOURCE INFO: '] +
["%s=%s" % (k, v)
for k, v in sorted(vInfo.items(), reverse=True)] +
['TRANSCODE OPTIONS: '] +
["%s" % (v) for k, v in vobstream_options.items()] +
['SOURCE FILE: ', os.path.split(full_path)[1]]
) |
|
| Back to top |
|
 |
dbw
Joined: 09 Oct 2009 Posts: 2 Location: Orange NSW Australia
|
Posted: Fri Oct 09, 2009 11:55 pm Post subject: That worked great! |
|
|
That fixed it. Now working beautifully...
Much appreciated and thanks from Australia. |
|
| Back to top |
|
 |
cburbs
Joined: 12 Oct 2009 Posts: 9
|
Posted: Mon Oct 12, 2009 3:17 pm Post subject: |
|
|
OK I tried to get this setup and I am stuck. I downloaded the zip file and unzipped it/renamed it like mentioned to C:\program files\Pytivo\plugins.
I then went to the pyTivo Web Configuration and added a section:
[DVDs]
Type: dvdvideo
path: F:\Movies
I have one folder under movies for testing but I don't see it show up anywhere even trying to use the link in one of the previous posts -
(A quick way to check is to check locally via webbrowser, http://localhost:9032/TiVoConnect?Command=QueryContainer&Container=DVDs )
I get unsupported command
Query:
Container ['DVDs']
command: ['QueryContainer']
Any help would be great. |
|
| Back to top |
|
 |
rdian06
Joined: 12 Apr 2008 Posts: 1420
|
Posted: Mon Oct 12, 2009 3:50 pm Post subject: |
|
|
Run pyTivo from a console session (i.e. not the Windows Service) so that you can see all the debug output.
Then copy and paste the debug output here. |
|
| Back to top |
|
 |
cburbs
Joined: 12 Oct 2009 Posts: 9
|
Posted: Mon Oct 12, 2009 4:33 pm Post subject: |
|
|
| rdian06 wrote: | Run pyTivo from a console session (i.e. not the Windows Service) so that you can see all the debug output.
Then copy and paste the debug output here. |
How does one do this? |
|
| Back to top |
|
 |
TheBayer
Joined: 23 Aug 2009 Posts: 33
|
Posted: Mon Oct 12, 2009 4:51 pm Post subject: |
|
|
| cburbs wrote: | [DVDs]
Type: dvdvideo
path: F:\Movies
|
Pretty sure the problem is that it should be:
[DVDs]
type=dvdvideo
path=F:\Movies
But I'm guessing here. |
|
| Back to top |
|
 |
cburbs
Joined: 12 Oct 2009 Posts: 9
|
Posted: Mon Oct 12, 2009 4:53 pm Post subject: |
|
|
In the pyTivon.conf file it is the following -
[DVDs]
type = dvdvideo
path = F:\Movies |
|
| Back to top |
|
 |
rdian06
Joined: 12 Apr 2008 Posts: 1420
|
Posted: Mon Oct 12, 2009 5:44 pm Post subject: |
|
|
| What OS are you running? |
|
| Back to top |
|
 |
cburbs
Joined: 12 Oct 2009 Posts: 9
|
Posted: Mon Oct 12, 2009 5:51 pm Post subject: |
|
|
| Windows XP |
|
| Back to top |
|
 |
rdian06
Joined: 12 Apr 2008 Posts: 1420
|
Posted: Mon Oct 12, 2009 9:04 pm Post subject: |
|
|
Did you install pyTivo manually or via the recent March 09 Windows installer?
If you used the March 09 Windows Installer, you may need to update to a later version of the core code to work with the plugin. There has been quite a bit of internal reorganization done since March.
See my instructions for upgrading to the latest wmcbrine git here:
http://pytivo.sourceforge.net/forum/post7536.html#7536 |
|
| Back to top |
|
 |
|