<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
  <channel>
    <title>2019/06/23 on Yano&#39;s digital garage</title>
    <link>https://www.bravotouring.com/~yano/archives/2019/06/23/</link>
    <description>Recent content in 2019/06/23 on Yano&#39;s digital garage</description>
    <generator>Hugo</generator>
    <language>en-us</language>
    <lastBuildDate>Sun, 23 Jun 2019 23:35:38 +0900</lastBuildDate>
    <atom:link href="https://www.bravotouring.com/~yano/archives/2019/06/23/index.xml" rel="self" type="application/rss+xml" />
    <item>
      <title>BSキャンパス？</title>
      <link>https://www.bravotouring.com/~yano/diary/it/20190623_bscampas.htm</link>
      <pubDate>Sun, 23 Jun 2019 23:35:38 +0900</pubDate>
      <guid>https://www.bravotouring.com/~yano/diary/it/20190623_bscampas.htm</guid>
      <description>&lt;table align=&#34;right&#34; class=&#34;Panorama&#34;&gt;&#xA;&lt;tr&gt;&#xA;&lt;td&gt;&lt;img alt=&#34;2018年10月、放送大学のテレビ放送(BS放送)が大きく変わります！&#34; src=&#34;https://www.bravotouring.com/~yano/images/2019/20190623_bscampas.png&#34;/&gt;&lt;/td&gt;&#xA;&lt;/tr&gt;&#xA;&lt;tr&gt;&#xA;&lt;td class=&#34;PhotoMemo&#34;&gt;&lt;a href=&#34;https://www.ouj.ac.jp/&#34;&gt;放送大学&lt;/a&gt;より&lt;/td&gt;&#xA;&lt;/tr&gt;&#xA;&lt;/table&gt;&#xA;&lt;p&gt;先日調達した&lt;a href=&#34;https://www.bravotouring.com/~yano/diary/it/20190604_regza.htm&#34;&gt;4K REGZA&lt;/a&gt;。&lt;/p&gt;&#xA;&lt;p&gt;何気に番組表をチェックしてたところ「BSキャンパスex」と「BSキャンパスon」という見慣れぬチャンネルに気付いた。&lt;/p&gt;&#xA;&lt;p&gt;どうやら&lt;a href=&#34;https://www.ouj.ac.jp/hp/special/article/20180401_01.html&#34;&gt;放送大学が再編&lt;/a&gt;し、単位認定を前提としない学びの機会を提供する231ch「BSキャンパスex」、単位認定を前提とした232ch「BSキャンパスon」という構成になった模様。&lt;/p&gt;&#xA;&lt;p&gt;まずは、&lt;span class=&#34;Path&#34;&gt;epgdump.c&lt;/span&gt;のチャンネルテーブル部分の文字列を変更してbuild。&lt;/p&gt;&#xA;&lt;p&gt;&lt;span class=&#34;Software&#34;&gt;epgrec&lt;/span&gt;側も1日放置しておけばアップデートされそうな気もするのだが、&lt;a href=&#34;https://www.bravotouring.com/~yano/diary/it/20190312_epgrec.htm&#34;&gt;3月&lt;/a&gt;に続いて&lt;span class=&#34;Software&#34;&gt;mysql&lt;/span&gt;コマンドでRecorder_channelTblもアップデート。&lt;/p&gt;&#xA;&lt;p&gt;&#xA;&lt;blockquote class=&#34;Log&#34;&gt;&#xA;mysql&gt; select * from Recorder_channelTbl where name like &#34;放送大学%&#34;;&lt;br/&gt;&#xA;+----+------+---------+-----------------------+------------------------+-----+------+&lt;br/&gt;&#xA;| id | type | channel | name                  | channel_disc           | sid | skip |&lt;br/&gt;&#xA;+----+------+---------+-----------------------+------------------------+-----+------+&lt;br/&gt;&#xA;| 16 | BS   | 231     | 放送大学1             | 4231.epgdata.ontvjapan | hd  |    0 |&lt;br/&gt;&#xA;| 17 | BS   | 232     | 放送大学2             | 4232.epgdata.ontvjapan | hd  |    0 |&lt;br/&gt;&#xA;| 31 | BS   | 531     | 放送大学ラジオ        | 4531.epgdata.ontvjapan | hd  |    0 |&lt;br/&gt;&#xA;+----+------+---------+-----------------------+------------------------+-----+------+&lt;br/&gt;&#xA;3 rows in set (0.03 sec)&lt;br/&gt;&#xA;&lt;br/&gt;&#xA;mysql&gt; update Recorder_channelTbl set name = &#34;BSキャンパスex&#34; where type = &#34;BS&#34; and channel = 231;&lt;br/&gt;&#xA;Query OK, 1 row affected (0.01 sec)&lt;br/&gt;&#xA;Rows matched: 1  Changed: 1  Warnings: 0&lt;br/&gt;&#xA;&lt;br/&gt;&#xA;mysql&gt; update Recorder_channelTbl set name = &#34;BSキャンパスon&#34; where type = &#34;BS&#34; and channel = 232;&lt;br/&gt;&#xA;Query OK, 1 row affected (0.00 sec)&lt;br/&gt;&#xA;Rows matched: 1  Changed: 1  Warnings: 0&lt;br/&gt;&#xA;&lt;br/&gt;&#xA;mysql&gt; select * from Recorder_channelTbl where name like &#34;BSキャンパス%&#34;;&lt;br/&gt;&#xA;+----+------+---------+---------------------+------------------------+-----+------+&lt;br/&gt;&#xA;| id | type | channel | name                | channel_disc           | sid | skip |&lt;br/&gt;&#xA;+----+------+---------+---------------------+------------------------+-----+------+&lt;br/&gt;&#xA;| 16 | BS   | 231     | BSキャンパスex      | 4231.epgdata.ontvjapan | hd  |    0 |&lt;br/&gt;&#xA;| 17 | BS   | 232     | BSキャンパスon      | 4232.epgdata.ontvjapan | hd  |    0 |&lt;br/&gt;&#xA;+----+------+---------+---------------------+------------------------+-----+------+&lt;br/&gt;&#xA;2 rows in set (0.00 sec)&lt;br/&gt;&lt;br/&gt;mysql&gt;&lt;/blockquote&gt;&#xA;&lt;/p&gt;</description>
    </item>
  </channel>
</rss>
