« C78夏コミのご案内(まだほとんどなんにもできてない版) | ★★★★ ストライクウィッチーズ2 #5 「私のロマーニャ」 »
1 Comment so far
Linux用デジタル放送チャンネルスキャンスクリプト
Posted on 2010/08/09 (月) 13:25
Filed Under foltia | | TrackBack |
「アニメ自動録画システム foltia」に組み込もうとして、チャンネルスキャンスクリプトを作った。
けど、便利そうなんで、foltiaに組み込む前にスタンドアロンで動くものをメモ代わりにここに貼ろうかと。
実行結果はこんな感じ。
[中略]
[以下略]
手元の環境では3分かからずに地デジ/BS/CSのスキャンが完了した。
テストはrecpt1でしか試してないけど類似のコマンドならそれなりに行ける気がする。
他にepgdumpが必要。
お持ち帰りはこちら。
スタンドアロンチャンネルスキャンスクリプト channelscan.pl
PERL:
-
#!/usr/bin/perl
-
#
-
#
-
# Anime recording system foltia
-
# http://www.dcc-jpl.com/soft/foltia/
-
#
-
#
-
# チャンネルスキャン
-
# 初期インストール時に受信可能局をスキャンします
-
#
-
# DCC-JPL Japan/foltia project
-
#
-
-
my $recpt1path = "/home/foltia/perl/tool/recpt1"; #ほかのキャプチャデバイス作ってる人はココを変更
-
my $epgdumppath = "/home/foltia/perl/tool"; #epgdumpのあるディレクトリ
-
my $recfolderpath = "/tmp";#tsを出力するディレクトリ
-
my $xmloutpath = "/tmp";
-
my $channel = 13 ; #地デジチャンネルは13-62
-
my $oserr = "";
-
my $line = "";
-
-
print "Initialize\n";
-
print "Tool path are\n";
-
print "REC:$recpt1path\n";
-
print "EPGDUMP:$epgdumppath/epgdump\n";
-
print "TS OUT:$recfolderpath/\n";
-
print "XML OUT:$xmloutpath/\n";
-
-
#ツールがあるか確認
-
unless (-e "$recpt1path"){
-
print "Please install $recpt1path.\n";
-
exit 1;
-
}
-
unless (-e "$epgdumppath/epgdump"){
-
print "Please install $epgdumppath/epgdump.\n";
-
exit 1;
-
}
-
unless (-e "$recfolderpath"){
-
print "Please make directory $recfolderpath.\n";
-
exit 1;
-
}
-
unless (-e "$xmloutpath"){
-
print "Please make directory $xmloutpath.\n";
-
exit 1;
-
}
-
-
-
#地デジスキャンループ
-
for ($channel = 13; $channel <= 62 ; $channel++){
-
print "\nChannel: $channel\n";
-
$oserr = `$recpt1path $channel 4 $recfolderpath/__$channel.m2t`;
-
$oserr = `$epgdumppath/epgdump $channel $recfolderpath/__$channel.m2t $xmloutpath/__$channel-epg.xml`;
-
-
print "\t\t This channel can view : $channel \n";
-
while ( $line = <XML>) {
-
#Jcode::convert(\$line,'euc','utf8');
-
if($line =~ /display-name/){
-
$line =~ s/<.*?>//g;
-
#Jcode::convert(\$line,'utf8','euc');
-
print "\t\t $channel $line\n";
-
}#end if
-
}#end while
-
}else{
-
print "\t\t Not Available : $channel \n";
-
}#end if
-
}#end for
-
-
-
#BSデジタル
-
$channel = 211;
-
print "\nBS Digital Scan\n";
-
$oserr = `$recpt1path $channel 4 $recfolderpath/__$channel.m2t`;
-
$oserr = `$epgdumppath/epgdump /BS $recfolderpath/__$channel.m2t $xmloutpath/__$channel-epg.xml`;
-
-
print "\t\t BS Digital can view : \n";
-
while ( $line = <XML>) {
-
#Jcode::convert(\$line,'euc','utf8');
-
if($line =~ /display-name/){
-
$line =~ s/<.*?>//g;
-
#Jcode::convert(\$line,'utf8','euc');
-
print "\t\t $line\n";
-
}#end if
-
}#end while
-
}else{
-
print "\t\t Not Available : BS Digital \n";
-
}#end if
-
-
#CSデジタル
-
$channel = "CS8";
-
print "\nCS Digital Scan\n";
-
$oserr = `$recpt1path $channel 4 $recfolderpath/__$channel.m2t`;
-
$oserr = `$epgdumppath/epgdump /CS $recfolderpath/__$channel.m2t $xmloutpath/__$channel-epg.xml`;
-
-
print "\t\t CS Digital can view : \n";
-
while ( $line = <XML>) {
-
#Jcode::convert(\$line,'euc','utf8');
-
if($line =~ /display-name/){
-
$line =~ s/<.*?>//g;
-
#Jcode::convert(\$line,'utf8','euc');
-
print "\t\t $line\n";
-
}#end if
-
}#end while
-
}else{
-
print "\t\t Not Available : CS Digital \n";
-
}#end if
地デジチャンネルを調べるにはここが便利:「地上デジタル放送 チャンネル一覧表:マスプロ電工」
Comments
Leave a Comment
TrackBack URI :http://www.dcc-jpl.com/diary/2010/08/09/foltia-channelscan/trackback/
Tweets by sorshi
Recently
- Comistream Reader公開!
- 2024年10月時点の令和最新版ウチのバックアップ環境
- C104 夏コミのご案内
- C103 冬コミのご案内
- C102 夏コミのご案内 13日 日曜日 西お28b
- 「アニメソムリエ」という新サービスを作りました!
- C101冬コミのご案内 2日目 12/31 土曜日 西さ07a
- モバイルディスプレイをMac miniにつないだら1600×1000がRetina表示にならなかったんで設定変更した話
- C100夏コミのご案内 1日目 8/13 土曜日 西し15b
- DCC-JPL.COMのメールシステムをG SuiteからCloudflare Email Routingに切り換えた
- ゲーム実況とVTuber的な日記【毎週土曜15時配信】
- C99冬コミのご案内 2日目 12/31金曜日 東5 テ07b
- アニメオブジイヤ2020
- MacでjpegのzipをQuickLookしよう
- USB2.5GbEアダプタを買ったりErgoDoxのキースイッチをまた交換したりといった最近の日記
- CentOS 8 StreamがESXi5.5上でIllegal instruction (core dumped)で死にまくるのを解決するメモ
- 2020年のヒット曲TOP41が1時間でわかるMIX(原曲Spotifyリンク&各曲コメントつき)
- アニメオブジイヤ2019
- 今日のErgoDoxなどの日記
- 2019年のヒット曲TOP41が1時間でわかるMIX
- 中古のThinkPad X1 Carbon 4th Genを買ってWWAN(LTEモデム)を内蔵した話
- Raspberry PiでGNSSをクロックソースにするStratum1 NTPサーバーを作った話
- 40ギガビットイーサネットへの道 1(MikroTik CRS326-24S+2Q+RM導入編)
- メインプロバイダを「ZOOT NATIVE IPv4固定IP1個」に乗り換えた
- C97冬コミのご案内 4日目 12/31火曜日 南3 ヨ-18a
- 2018年のヒット曲TOP41が1時間でわかるMIX
- 最近のErgoDox日記
- レーザー刻印で薙刀式キーキャップを作った
- Mac miniの重さ
- Mac用薙刀式のセンターシフト+T,Yの実装
Categories
Archives
- 2024年 11月
- 2024年 8月
- 2023年 12月
- 2023年 8月
- 2023年 3月
- 2022年 12月
- 2022年 8月
- 2022年 3月
- 2021年 12月
- 2021年 11月
- 2021年 5月
- 2021年 3月
- 2021年 2月
- 2020年 12月
- 2020年 11月
- 2020年 10月
- 2020年 6月
- 2019年 12月
- 2019年 11月
- 2019年 10月
- 2019年 9月
- 2019年 8月
- 2019年 7月
- 2019年 5月
- 2019年 4月
- 2019年 3月
- 2019年 1月
- 2018年 12月
- 2018年 8月
- 2018年 6月
- 2018年 4月
- 2018年 2月
- 2017年 12月
- 2017年 8月
- 2017年 5月
- 2017年 1月
- 2016年 12月
- 2016年 9月
- 2016年 8月
- 2016年 7月
- 2016年 4月
- 2016年 1月
- 2015年 11月
- 2015年 9月
- 2015年 8月
- 2015年 5月
- 2015年 3月
- 2015年 2月
- 2015年 1月
- 2014年 12月
- 2014年 11月
- 2014年 10月
- 2014年 9月
- 2014年 8月
- 2014年 7月
- 2014年 5月
- 2014年 3月
- 2014年 2月
- 2014年 1月
- 2013年 12月
- 2013年 11月
- 2013年 10月
- 2013年 9月
- 2013年 8月
- 2013年 7月
- 2013年 6月
- 2013年 5月
- 2013年 4月
- 2012年 11月
- 2012年 10月
- 2012年 9月
- 2012年 8月
- 2012年 7月
- 2012年 6月
- 2012年 5月
- 2012年 4月
- 2012年 3月
- 2012年 2月
- 2012年 1月
- 2011年 12月
- 2011年 11月
- 2011年 10月
- 2011年 9月
- 2011年 8月
- 2011年 7月
- 2011年 6月
- 2011年 5月
- 2011年 4月
- 2011年 3月
- 2011年 2月
- 2011年 1月
- 2010年 12月
- 2010年 11月
- 2010年 10月
- 2010年 9月
- 2010年 8月
- 2010年 7月
- 2010年 6月
- 2010年 5月
- 2010年 4月
- 2010年 3月
- 2010年 2月
- 2010年 1月
- 2009年 12月
- 2009年 11月
- 2009年 10月
- 2009年 9月
- 2009年 8月
- 2009年 7月
- 2009年 6月
- 2009年 5月
- 2009年 4月
- 2009年 3月
- 2009年 2月
- 2009年 1月
- 2008年 12月
- 2008年 11月
- 2008年 10月
- 2008年 9月
- 2008年 8月
- 2008年 7月
- 2008年 6月
- 2008年 5月
- 2008年 4月
- 2008年 3月
- 2008年 2月
- 2008年 1月
- 2007年 12月
- 2007年 11月
- 2007年 10月
- 2007年 9月
- 2007年 8月
- 2007年 7月
- 2007年 6月
- 2007年 5月
- 2007年 4月
- 2007年 3月
- 2007年 2月
- 2007年 1月
[…] http://www.dcc-jpl.com/diary/2010/08/09/foltia-channelscan/ […]