Dlife終了
BSデジタル放送局「Dlife(ディーライフ)」と「FOXスポーツ&エンターテイメント」が、2020年3月31日24時に閉局する。という事で、epgrecもsatelite_channel.phpとepgdump.cのチャンネルテーブルからコメントアウト。
epgrecのRecorder_channelTblはmysqlコマンドでdeleteする。「自動録画キーワード」のチャンネル指定がRecorder_keywordTblのchannel_idで紐付けされているので、これもdeleteしておくこと。
mysql> select * from Recorder_channelTbl where channel in (238,258);
+----+------+---------+-----------+------------------------+-----+------+
| id | type | channel | name | channel_disc | sid | skip |
+----+------+---------+-----------+------------------------+-----+------+
| 20 | BS | 238 | FOX bs238 | 4238.epgdata.ontvjapan | hd | 0 |
| 30 | BS | 258 | D-Life | 4258.epgdata.ontvjapan | hd | 0 |
+----+------+---------+-----------+------------------------+-----+------+
2 rows in set, 108 warnings (0.00 sec)
mysql> delete from Recorder_channelTbl where channel in (238,258);
Query OK, 2 rows affected, 108 warnings (0.03 sec)
mysql> select * from Recorder_keywordTbl where channel_id in (30,20);
+-----+-----------+------+------------+-------------+------------+--------------+-----------+---------+
| id | keyword | type | channel_id | category_id | use_regexp | autorec_mode | weekofday | prgtime |
+-----+-----------+------+------------+-------------+------------+--------------+-----------+---------+
| 430 | エレナ | * | 30 | 0 | 0 | 1 | 7 | 24 |
+-----+-----------+------+------------+-------------+------------+--------------+-----------+---------+
1 row in set (0.00 sec)
mysql> delete from Recorder_keywordTbl where channel_id in (30,20);
Query OK, 1 row affected (0.04 sec)
mysql>