← Back to team overview

mythbuntu-bugs team mailing list archive

[Bug 487370] Re: Mythdvd rip issue

 

I confirm this on Mythbuntu 9.10 using mythtv & mythvideo version
0.22.0+fixes22594-0ubuntu1 (i.e. the ones currently in the repos).

I made it go away by:

insert into settings values ('mythdvd.LocalRipDirectory',
'/var/lib/mythdvd/temp', null);

-- 
Mythdvd rip issue
https://bugs.launchpad.net/bugs/487370
You received this bug notification because you are a member of Mythbuntu
Bug Team, which is subscribed to Mythbuntu.

Status in Mythbuntu, Ubuntu derivative focused upon MythTV: Incomplete

Bug description:
I don't know whether this is just mythbuntu or whether its an issue for all distros using mythtv but I was having a problem ripping dvds, the begin ripping button was non responsive. 
I found out that when I ran frontend verbose this error came up. 

2009-11-23 13:52:05.216 MSqlQuery::exec() "SELECT data FROM settings WHERE value = 'mythdvd.LocalRipDirectory?' AND hostname = 'Media-Center' ;" 
2009-11-23 13:52:05.216 MSqlQuery::exec() "SELECT data FROM settings WHERE value = 'mythdvd.LocalRipDirectory?' AND hostname IS NULL;" 
2009-11-23 13:52:05.217 MSqlQuery::exec() "SELECT data FROM settings WHERE value = 'VideoStartupDir?' AND hostname = 'Media-Center' ;"
 2009-11-23 13:52:05.217 titledialog.o: I can't rip, as I have nowhere to put finished files. MythVideo? installed?

when I query the database no rows come up.

Whenever I would change my temp directory in the Media Settings->Rip Settings it would not write the changes to the database I corrected this issue by manually putting it into the database

UPDATE settings SET data = '/var/lib/mythdvd/temp' WHERE value = 'VideoStartupDir?' and hostname LIKE 'Media-Center';
in my case the hostname is Media-Center and my directory is /var/lib/mythdvd/temp