pyTivo Discussion Forum Forum Index pyTivo Discussion Forum
Answers and the development of pyTivo a TiVo transcoding server
 
 FAQFAQ   SearchSearch   MemberlistMemberlist   UsergroupsUsergroups   RegisterRegister 
 ProfileProfile   Log in to check your private messagesLog in to check your private messages   Log inLog in 

DVD Video plugin for pytivo! (now working)
Goto page Previous  1, 2, 3, 4, 5, 6, 7, 8, 9  Next
 
Post new topic   Reply to topic    pyTivo Discussion Forum Forum Index -> pyTivo
 View previous topic :: View next topic  
Author Message
greymatr



Joined: 29 Sep 2009
Posts: 4

PostPosted: Tue Sep 29, 2009 11:57 pm    Post subject: Reply with quote

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
View user's profile Send private message
Tgrim1



Joined: 01 Jul 2008
Posts: 29

PostPosted: Wed Sep 30, 2009 10:28 am    Post subject: Reply with quote

The new plugin works for me now also, thanks!
Back to top
View user's profile Send private message
cmaino



Joined: 30 Sep 2009
Posts: 1

PostPosted: Wed Sep 30, 2009 11:40 pm    Post subject: Reply with quote

Which directory does the plugin get installed in on MacOS?
Back to top
View user's profile Send private message
rdian06



Joined: 12 Apr 2008
Posts: 1420

PostPosted: Thu Oct 01, 2009 1:48 am    Post subject: Reply with quote

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
View user's profile Send private message
dbw



Joined: 09 Oct 2009
Posts: 2
Location: Orange NSW Australia

PostPosted: Fri Oct 09, 2009 2:15 am    Post subject: Can't See to get this plugin to work Reply with quote

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 Very Happy 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
View user's profile Send private message Send e-mail
TheBayer



Joined: 23 Aug 2009
Posts: 33

PostPosted: Fri Oct 09, 2009 7:15 pm    Post subject: Reply with quote

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
View user's profile Send private message
dbw



Joined: 09 Oct 2009
Posts: 2
Location: Orange NSW Australia

PostPosted: Fri Oct 09, 2009 11:55 pm    Post subject: That worked great! Reply with quote

That fixed it. Now working beautifully...

Much appreciated and thanks from Australia.
Back to top
View user's profile Send private message Send e-mail
cburbs



Joined: 12 Oct 2009
Posts: 9

PostPosted: Mon Oct 12, 2009 3:17 pm    Post subject: Reply with quote

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
View user's profile Send private message
rdian06



Joined: 12 Apr 2008
Posts: 1420

PostPosted: Mon Oct 12, 2009 3:50 pm    Post subject: Reply with quote

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
View user's profile Send private message
cburbs



Joined: 12 Oct 2009
Posts: 9

PostPosted: Mon Oct 12, 2009 4:33 pm    Post subject: Reply with quote

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
View user's profile Send private message
TheBayer



Joined: 23 Aug 2009
Posts: 33

PostPosted: Mon Oct 12, 2009 4:51 pm    Post subject: Reply with quote

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
View user's profile Send private message
cburbs



Joined: 12 Oct 2009
Posts: 9

PostPosted: Mon Oct 12, 2009 4:53 pm    Post subject: Reply with quote

In the pyTivon.conf file it is the following -

[DVDs]
type = dvdvideo
path = F:\Movies
Back to top
View user's profile Send private message
rdian06



Joined: 12 Apr 2008
Posts: 1420

PostPosted: Mon Oct 12, 2009 5:44 pm    Post subject: Reply with quote

What OS are you running?
Back to top
View user's profile Send private message
cburbs



Joined: 12 Oct 2009
Posts: 9

PostPosted: Mon Oct 12, 2009 5:51 pm    Post subject: Reply with quote

Windows XP
Back to top
View user's profile Send private message
rdian06



Joined: 12 Apr 2008
Posts: 1420

PostPosted: Mon Oct 12, 2009 9:04 pm    Post subject: Reply with quote

cburbs wrote:
Windows XP


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
View user's profile Send private message
Display posts from previous:   
Post new topic   Reply to topic    pyTivo Discussion Forum Forum Index -> pyTivo All times are GMT
Goto page Previous  1, 2, 3, 4, 5, 6, 7, 8, 9  Next
Page 2 of 9

 
Jump to:  
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum
You cannot attach files in this forum
You can download files in this forum
Site is in NO WAY affiliated with TiVo Inc

Powered by phpBB © 2001, 2005 phpBB Group
phpBB SEO

Get pytivo at SourceForge.net. Fast, secure and Free Open Source software downloads
[ Time: 0.5743s ][ Queries: 13 (0.0096s) ][ GZIP on - Debug on ]