Sarvin,<br><br>Looks different than what I was seeing.<br><br>Todd<br><br><div><span class="gmail_quote">On 1/24/07, <b class="gmail_sendername">sarvin</b> &lt;<a href="mailto:sarvinc@fastmail.fm">sarvinc@fastmail.fm</a>&gt; wrote:
</span><blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;"><br>On Jan 23, 2007, at 8:25 PM, Todd French wrote:<br><br>&gt; Sarvin,<br>&gt;<br>&gt; I&#39;m no SQL guy either, in fact it took me a while messing around
<br>&gt; with things to figure this out and how to fix it.&nbsp;&nbsp;There probably<br>&gt; is a better way to do this than I did, but so far it&#39;s working. I&#39;m<br>&gt; sure there must be a way to just add a field to the table with
<br>&gt; deleting and recreating, but I knew how to do that so I didn&#39;t<br>&gt; bother to find it.&nbsp;&nbsp;So you&#39;re milage may vary, be careful as if you<br>&gt; hose your database you&#39;ve hosed your setup, I would only do this if
<br>&gt; you&#39;re getting exactly the same error, or if you know what you&#39;re<br>&gt; doing.&nbsp;&nbsp;Basically I used a dump of the database that I had made,<br>&gt; found the relevant section, added the field as needed, and put back
<br>&gt; into mysql.&nbsp;&nbsp;Out of curiousity are you having the same exact<br>&gt; problem?&nbsp;&nbsp;I searched around and couldn&#39;t find anything about it.&nbsp;&nbsp;I<br>&gt; was almost ready to post on the list and ask for help, but decided
<br>&gt; it would be more fun to mess with stuff I didn&#39;t understand :-)<br>&gt;<br>&gt; I did something like this:<br>&gt;<br>&gt; to dump the database:<br>&gt; mysqldump -p mythconverg &gt; backup.sql&nbsp;&nbsp; ( you need to provide a
<br>&gt; password, should be mythtv or something like that, mine was same as<br>&gt; my root password)<br>&gt;<br>&gt; to find the right section and put it into a file<br>&gt; cat backup.sql | grep -B 10 -A 30 dvdtranscode &gt; 
transcode.sql<br>&gt;<br>&gt; The above command gives you a bit before and after the seach term<br>&gt; so you have to trim off the I then hand edited the file to add the<br>&gt; tc_param field, and add NULL data in to fill the fields ( this will
<br>&gt; all be in the sql commands below)<br>&gt;<br>&gt; then log in to the database<br>&gt;<br>&gt; mysql -p mythconverg<br>&gt;<br>&gt; once you&#39;re logged in, I basically cut and pasted in my modified<br>&gt; commands:
<br>&gt;<br>&gt; DROP TABLE IF EXISTS `dvdtranscode`;<br>&gt;<br>&gt; CREATE TABLE `dvdtranscode` (<br>&gt;&nbsp;&nbsp; `intid` int(11) NOT NULL auto_increment,<br>&gt;&nbsp;&nbsp; `input` int(10) unsigned default NULL,<br>&gt;&nbsp;&nbsp; `name` varchar(128) NOT NULL,
<br>&gt;&nbsp;&nbsp; `sync_mode` int(10) unsigned default NULL,<br>&gt;&nbsp;&nbsp; `use_yv12` tinyint(1) default NULL,<br>&gt;&nbsp;&nbsp; `cliptop` int(11) default NULL,<br>&gt;&nbsp;&nbsp; `clipbottom` int(11) default NULL,<br>&gt;&nbsp;&nbsp; `clipleft` int(11) default NULL,
<br>&gt;&nbsp;&nbsp; `clipright` int(11) default NULL,<br>&gt;&nbsp;&nbsp; `f_resize_h` int(11) default NULL,<br>&gt;&nbsp;&nbsp; `f_resize_w` int(11) default NULL,<br>&gt;&nbsp;&nbsp; `hq_resize_h` int(11) default NULL,<br>&gt;&nbsp;&nbsp; `hq_resize_w` int(11) default NULL,
<br>&gt;&nbsp;&nbsp; `grow_h` int(11) default NULL,<br>&gt;&nbsp;&nbsp; `grow_w` int(11) default NULL,<br>&gt;&nbsp;&nbsp; `clip2top` int(11) default NULL,<br>&gt;&nbsp;&nbsp; `clip2bottom` int(11) default NULL,<br>&gt;&nbsp;&nbsp; `clip2left` int(11) default NULL,<br>&gt;&nbsp;&nbsp; `clip2right` int(11) default NULL,
<br>&gt;&nbsp;&nbsp; `codec` varchar(128) NOT NULL,<br>&gt;&nbsp;&nbsp; `codec_param` varchar(128) default NULL,<br>&gt;&nbsp;&nbsp; `bitrate` int(11) default NULL,<br>&gt;&nbsp;&nbsp; `a_sample_r` int(11) default NULL,<br>&gt;&nbsp;&nbsp; `a_bitrate` int(11) default NULL,
<br>&gt;&nbsp;&nbsp; `two_pass` tinyint(1) default NULL,<br>&gt;&nbsp;&nbsp; `tc_param` varchar(128) default NULL,<br>&gt;&nbsp;&nbsp; PRIMARY KEY&nbsp;&nbsp;(`intid`)<br>&gt; ) ENGINE=MyISAM AUTO_INCREMENT=12 DEFAULT CHARSET=latin1;<br>&gt;<br>&gt; LOCK TABLES `dvdtranscode` WRITE;
<br>&gt;<br>&gt; /*!40000 ALTER TABLE `dvdtranscode` DISABLE KEYS */;<br>&gt;<br>&gt; (I don&#39;t know how the below will wrap, but it is actually all one<br>&gt; line)<br>&gt; INSERT INTO `dvdtranscode` VALUES (1,1,&#39;Good&#39;,
<br>&gt; 2,1,16,16,0,0,2,0,0,0,0,0,32,32,8,8,&#39;divx5&#39;,NULL,1618,NULL,NULL,<br>&gt; 0,NULL),(2,2,&#39;Excellent&#39;,<br>&gt; 2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,&#39;divx5&#39;,NULL,0,NULL,NULL,1,NULL),<br>&gt; (3,2,&#39;Good&#39;,2,1,0,0,8,8,0,0,0,0,0,0,0,0,0,0,&#39;divx5&#39;,NULL,
<br>&gt; 1618,NULL,NULL,0,NULL),(4,2,&#39;Medium&#39;,<br>&gt; 2,1,0,0,8,8,5,5,0,0,0,0,0,0,0,0,&#39;divx5&#39;,NULL,1200,NULL,NULL,0,NULL),<br>&gt; (5,3,&#39;Good&#39;,2,1,0,0,0,0,0,0,0,0,2,0,80,80,8,8,&#39;divx5&#39;,NULL,
<br>&gt; 0,NULL,NULL,0,NULL),(6,4,&#39;Excellent&#39;,<br>&gt; 2,1,0,0,0,0,0,0,0,0,2,0,0,0,0,0,&#39;divx5&#39;,NULL,0,NULL,NULL,1,NULL),<br>&gt; (7,4,&#39;Good&#39;,2,1,0,0,8,8,0,2,0,0,0,0,0,0,0,0,&#39;divx5&#39;,NULL,<br>
&gt; 1618,NULL,NULL,0,NULL),(8,5,&#39;Good&#39;,<br>&gt; 1,1,16,16,0,0,5,0,0,0,0,0,40,40,8,8,&#39;divx5&#39;,NULL,1618,NULL,NULL,<br>&gt; 0,NULL),(9,6,&#39;Good&#39;,1,1,0,0,16,16,5,0,0,0,0,0,0,0,0,0,&#39;divx5&#39;,NULL,
<br>&gt; 1618,NULL,NULL,0,NULL),(10,7,&#39;Good&#39;,<br>&gt; 1,1,0,0,0,0,1,0,0,0,0,0,76,76,8,8,&#39;divx5&#39;,NULL,1618,NULL,NULL,<br>&gt; 0,NULL),(11,8,&#39;Good&#39;,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,&#39;divx5&#39;,NULL,
<br>&gt; 1618,NULL,NULL,0,NULL);<br>&gt;<br>&gt; /*!40000 ALTER TABLE `dvdtranscode` ENABLE KEYS */;<br>&gt;<br>&gt; UNLOCK TABLES;<br>&gt;<br>&gt; If you have your file transcode.sql or whatever edited all clean I<br>&gt; think you can also do a mysql -p mythconverg &lt; 
transcode.sql<br>&gt; I wanted to do it manually so I could see any error output, and&nbsp;&nbsp;I<br>&gt; was already logged in to the database.<br>&gt;<br>&gt; Hope this helps,<br>&gt;<br>&gt; Todd<br>&gt;<br><br>This is a lot of help.
<br><br>I don&#39;t know if we&#39;re having the same problem. Mine was posted here:<br>&quot;<a href="http://www.gossamer-threads.com/lists/mythtv/users/245872">http://www.gossamer-threads.com/lists/mythtv/users/245872</a>
?<br>search_string=not%20able%20to%20rip%20DVDs;#245872&quot;<br><br>_______________________________________________<br>mythtv-users mailing list<br><a href="mailto:mythtv-users@mythtv.org">mythtv-users@mythtv.org</a><br>
<a href="http://mythtv.org/cgi-bin/mailman/listinfo/mythtv-users">http://mythtv.org/cgi-bin/mailman/listinfo/mythtv-users</a><br></blockquote></div><br>