Archive: 2023/11/30

NHK-BS再編

NHKのBS再編。

NHK新BS
NHK BSより

3波の衛星放送(BS1、BSプレミアム、BS4K)を2波(BS2K,BS4K)へ削減される事になり、「BSプレミアム」が2023年11月30日をもって放送終了。2023年12月1日からは「NHK BS」と「NHK BSプレミアム4K」にて放送される。

という事なので、epgrecのチャンネル名称(Recorder_channelTbl)を「NHK BS1」から「NHK BS」に。

yano@GT110b:~$ mysql epg -e "select * from Recorder_channelTbl where id in (1,2);";
+----+------+---------+-----------------------+------------------------+-----+------+
| id | type | channel | name | channel_disc | sid | skip |
+----+------+---------+-----------------------+------------------------+-----+------+
| 1 | BS | 101 | NHK BS1 | 4101.epgdata.ontvjapan | hd | 0 |
| 2 | BS | 103 | NHK BSプレミアム | 4103.epgdata.ontvjapan | hd | 0 |
+----+------+---------+-----------------------+------------------------+-----+------+
yano@GT110b:~$ mysql epg -e "update Recorder_channelTbl set name ='NHK BS' where id = 1;";
yano@GT110b:~$ mysql epg -e "select * from Recorder_channelTbl where id in (1,2);";
+----+------+---------+-----------------------+------------------------+-----+------+
| id | type | channel | name | channel_disc | sid | skip |
+----+------+---------+-----------------------+------------------------+-----+------+
| 1 | BS | 101 | NHK BS | 4101.epgdata.ontvjapan | hd | 0 |
| 2 | BS | 103 | NHK BSプレミアム | 4103.epgdata.ontvjapan | hd | 0 |
+----+------+---------+-----------------------+------------------------+-----+------+
自動録画キーワード(Recorder_keywordTbl)のチャンネル設定を「NHK BSプレミアム」から「NHK BS」に変更。
yano@GT110b:~$ mysql epg -e "select * from Recorder_keywordTbl where channel_id in (1,2);"
+-----+-----------------------------------------+------+------------+-------------+------------+--------------+-----------+---------+
| id | keyword | type | channel_id | category_id | use_regexp | autorec_mode | weekofday | prgtime |
+-----+-----------------------------------------+------+------------+-------------+------------+--------------+-----------+---------+
| 496 | ウルトラ重機 | * | 2 | 0 | 0 | 1 | 7 | 24 |
| 738 | 走れ!新幹線 | * | 2 | 0 | 0 | 1 | 7 | 24 |
| 551 | ウルトラセブン | * | 2 | 0 | 0 | 1 | 7 | 24 |
| 582 | プロジェクトX | * | 2 | 0 | 0 | 1 | 7 | 24 |
| 570 | 山口百恵 | * | 2 | 0 | 0 | 1 | 7 | 24 |
| 500 | 男はつらいよ | * | 2 | 6 | 0 | 1 | 7 | 24 |
| 506 | ALWAYS 三丁目の夕日 | * | 2 | 6 | 0 | 1 | 7 | 24 |
| 682 | Covers | * | 2 | 0 | 0 | 1 | 7 | 24 |
| 683 | 小泉今日子 | * | 2 | 0 | 0 | 1 | 7 | 24 |
| 698 | 中森明菜スペシャルライブ | * | 2 | 0 | 0 | 1 | 7 | 24 |
| 723 | WRC | * | 1 | 0 | 0 | 1 | 7 | 24 |
+-----+-----------------------------------------+------+------------+-------------+------------+--------------+-----------+---------+
yano@GT110b:~$ mysql epg -e "update Recorder_keywordTbl set channel_id = 1 where channel_id = 2;"
yano@GT110b:~$ mysql epg -e "select * from Recorder_keywordTbl where channel_id in (1,2);"
+-----+-----------------------------------------+------+------------+-------------+------------+--------------+-----------+---------+
| id | keyword | type | channel_id | category_id | use_regexp | autorec_mode | weekofday | prgtime |
+-----+-----------------------------------------+------+------------+-------------+------------+--------------+-----------+---------+
| 496 | ウルトラ重機 | * | 1 | 0 | 0 | 1 | 7 | 24 |
| 738 | 走れ!新幹線 | * | 1 | 0 | 0 | 1 | 7 | 24 |
| 551 | ウルトラセブン | * | 1 | 0 | 0 | 1 | 7 | 24 |
| 582 | プロジェクトX | * | 1 | 0 | 0 | 1 | 7 | 24 |
| 570 | 山口百恵 | * | 1 | 0 | 0 | 1 | 7 | 24 |
| 500 | 男はつらいよ | * | 1 | 6 | 0 | 1 | 7 | 24 |
| 506 | ALWAYS 三丁目の夕日 | * | 1 | 6 | 0 | 1 | 7 | 24 |
| 682 | Covers | * | 1 | 0 | 0 | 1 | 7 | 24 |
| 683 | 小泉今日子 | * | 1 | 0 | 0 | 1 | 7 | 24 |
| 698 | 中森明菜スペシャルライブ | * | 1 | 0 | 0 | 1 | 7 | 24 |
| 723 | WRC | * | 1 | 0 | 0 | 1 | 7 | 24 |
+-----+-----------------------------------------+------+------------+-------------+------------+--------------+-----------+---------+