[mythtv-users] one recording keeps failing

Mike Perkins mikep at randomtraveller.org.uk
Wed Sep 3 11:50:43 UTC 2014


On 03/09/14 12:33, Vincent McIntyre wrote:
> On 9/3/14, Mark Perkins <perkins1724 at hotmail.com> wrote:
>
> Yes, indeed. I use livetv only rarely and never while recordings are
> in progress.
> I have tried this out now though; I deleted all cards and video
> sources (there was only one source) and started over; when I saw the
> option to have livetv in a different order I tried to set it up (in
> the mythtv-setup gui). I ended up with this mess:
>
> mysql> select cardinputid, cardid, schedorder, livetvorder from cardinput;
> +-------------+--------+------------+-------------+
> | cardinputid | cardid | schedorder | livetvorder |
> +-------------+--------+------------+-------------+
> |           1 |      1 |          1 |           4 |
> |           3 |      3 |          3 |           1 |
> |           2 |      2 |          1 |           4 |
> |           4 |      4 |          3 |           1 |
> +-------------+--------+------------+-------------+
>
You could make your list look a little more manageable by adding an "ORDER BY 
cardinputid" clause to the end of your query:

mysql> select cardinputid, cardid, schedorder, livetvorder from cardinput order 
by cardinputid;

-- 

Mike Perkins



More information about the mythtv-users mailing list