This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/sh | |
| # 放送局と日時からradikoの番組に関する情報を取得するサンプル | |
| # | |
| # ライセンスはUnlicense(https://unlicense.org/)にしますので | |
| # 必要な箇所をかいつまんでの利用や別の処理系で実装するなりご自由に | |
| # | |
| # usage: radiko_program_info.sh {station_id} {[%Y%m%d]%H%M[%S]} | |
| # 日時は以下の指定が可能 | |
| # %H%M (時分のみ、日付は実行日で補完) | |
| # %H%M%S (時分秒のみ、日付は実行日で補完) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/sh | |
| # mirakc channel scan (using mirakc docker container image) | |
| # by uru (https://twitter.com/uru_2) | |
| # | |
| # require: | |
| # docker | |
| # jq | |
| set -eu | |
| export LANG=C.UTF-8 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/sh | |
| # Mirakurun/mirakc channel yaml output by uru (https://twitter.com/uru_2) | |
| # | |
| # require: | |
| # stz2012/epgdump | |
| # xmllint (libxml2 tools) | |
| # ISDB-T/S record software | |
| # recpt1, dvbv5-zap & Chinachu/dvbconf-for-isdb | |
| set -eu |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| --- driver/isdb2056.c.orig | |
| +++ driver/isdb2056.c | |
| @@ -565,8 +565,8 @@ | |
| if (freq->freq_no == 12) | |
| real_freq += 2000; | |
| - } else if (freq->freq_no >= 63 && freq->freq_no <= 102) { | |
| - // UHF 13-52ch | |
| + } else if (freq->freq_no >= 63 && freq->freq_no <= 112) { | |
| + // UHF 13-62ch |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| FROM alpine:3.11 | |
| ARG recdvb_version=1.3.2 | |
| RUN set -eux \ | |
| \ | |
| # install packages | |
| && apk update -U \ | |
| && apk add --no-cache curl libstdc++ socat tini tzdata v4l-utils-dvbv5 \ | |
| autoconf automake cargo cmake coreutils g++ gcc git libtool linux-headers make ninja pkgconfig \ |