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 \ |