<p dir="ltr">So, any other way to hide encrypted channels? Not sure why the channel scanner has an option to test decryption, but does nothing to skip encrypted channels? </p>
<div class="gmail_quote">8. mai 2016 16:06 skrev "Hika van den Hoven" <<a href="mailto:hikavdh@gmail.com">hikavdh@gmail.com</a>>:<br type="attribution"><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">Hoi Jarle,<br>
<br>
Sunday, May 8, 2016, 3:43:38 PM, you wrote:<br>
<br>
> I want to automatically hide all channels that my card is unable to<br>
> decrypt during dvb-s channel scan.<br>
<br>
> I see that the table channelscan_channel has a column called<br>
> "decryption_status" that seem to contain the value 2, if it was not<br>
> able to be decrypted.<br>
<br>
> So far so good.<br>
<br>
> My plan was to do:<br>
<br>
> SELECT callsign, mplex_id, service_id FROM channelscan_channel WHERE<br>
> decryption_status=2<br>
<br>
> and then use mplex_id and service_id to lookup the channels in channel table.<br>
<br>
> However during my testing I found channels in the channels table that<br>
> did NOT have a corresponding entry in channelscan_channel?<br>
<br>
> Am I missing something in relation to the channel <-><br>
> channelscan_channel connection?<br>
<br>
> Shouldn't all entries in channel also have a similar entry (with<br>
> identical mplex_id/service_id) in channelscan_channel?<br>
<br>
> Example:<br>
<br>
mysql>> SELECT callsign FROM channel WHERE mplexid = 847 AND serviceid = 7063;<br>
> +---------------+<br>
> | callsign      |<br>
> +---------------+<br>
> | Nelonen Prime |<br>
> +---------------+<br>
> 1 row in set (0.00 sec)<br>
<br>
mysql>> SELECT callsign,decryption_status FROM channelscan_channel<br>
> WHERE mplex_id = 847 AND service_id = 7063;<br>
> Empty set (0.00 sec)<br>
<br>
mysql>> SELECT callsign,decryption_status,mplex_id,service_id FROM<br>
> channelscan_channel WHERE callsign = "Nelonen Prime";<br>
> +---------------+-------------------+----------+------------+<br>
> | callsign      | decryption_status | mplex_id | service_id |<br>
> +---------------+-------------------+----------+------------+<br>
> | Nelonen Prime |                 2 |      838 |       7063 |<br>
> | Nelonen Prime |                 0 |      835 |       7063 |<br>
> | Nelonen Prime |                 2 |        0 |       7063 |<br>
> +---------------+-------------------+----------+------------+<br>
> 3 rows in set (0.00 sec)<br>
<br>
mysql>><br>
<br>
As far as I know, the channelscan_channel table has nothing to do with<br>
your actual channels. It is just a history of any scan performed. So a<br>
channel added other then through a scan will not be there and the same<br>
channel can be present through multiple scans.<br>
<br>
Tot mails,<br>
  Hika                            mailto:<a href="mailto:hikavdh@gmail.com">hikavdh@gmail.com</a><br>
<br>
"Zonder hoop kun je niet leven<br>
Zonder leven is er geen hoop<br>
Het eeuwige dilemma<br>
Zeker als je hoop moet vernietigen om te kunnen overleven!"<br>
<br>
De lerende Mens<br>
<br>
_______________________________________________<br>
mythtv-users mailing list<br>
<a href="mailto:mythtv-users@mythtv.org">mythtv-users@mythtv.org</a><br>
<a href="http://lists.mythtv.org/mailman/listinfo/mythtv-users" rel="noreferrer" target="_blank">http://lists.mythtv.org/mailman/listinfo/mythtv-users</a><br>
<a href="http://wiki.mythtv.org/Mailing_List_etiquette" rel="noreferrer" target="_blank">http://wiki.mythtv.org/Mailing_List_etiquette</a><br>
MythTV Forums: <a href="https://forum.mythtv.org" rel="noreferrer" target="_blank">https://forum.mythtv.org</a><br>
</blockquote></div>