2025年版 Mirakcのインストール

2025年3月18日

mirakc/mirakc

Mirakcをインストールするために Ubuntu24.04へDocker Engine 一式をインストール (Compose含む)
公式マニュアル記載の手順に沿ってインストールを行う

■ Docker のリポジトリからインストール

依存パッケージのインストール

sudo apt update
sudo apt install ca-certifi cates curl

Dockerリポジトリの公開鍵をUbuntu推奨ディレクトリへ格納

sudo install -m 0755 -d /etc/apt/keyrings
sudo curl -fsSL https://download.docker.com/linux/ubuntu/gpg \
-o /etc/apt/keyrings/docker.asc
sudo chmod a+r /etc/apt/keyrings/docker.asc

Dockerリポジトリ登録

echo \
"deb [arch=$(dpkg --print-architecture) signed-by=/etc/apt/keyrings/docker.asc] https://download.docker.com/linux/ubuntu \
$(. /etc/os-release && echo "$VERSION_CODENAME") stable" | \
sudo tee /etc/apt/sources.list.d/docker.list > /dev/null

Docker Engineのインストール

sudo apt update
sudo apt install docker-ce docker-ce-cli \
containerd.io docker-buildx-plugin docker-compose-plugin

■ Mirakcでrecisdb-rsを使用する様にコンテナの作成を行う

コンテナ内で、recisdb-rsを使用して録画ができるようにsoftcasとrecisdb-rsを組み込んだカスタムイメージを作成します。
debianのものでsoftcasとrecisdb-rsを追加するDockerfileを作る。

cd ~
mkdir ~/mirakc
cd ~/mirakc
nano Dockerfile
FROM mirakc/mirakc:main-debian

RUN apt-get update && apt -y install \
pcscd \
pcsc-tools \
libpcsclite-dev \
autoconf \
build-essential \
cmake \
curl \
git \
libssl-dev \
libtool \
libboost-all-dev \
pkg-config \
yasm \
unzip
RUN curl -X GET -u user:password https://softcas.zip --output softcas.zip && \
unzip softcas && \
cd softcas && \
make clean && \
make && \
cp libpcsclite.so.1.0.0 /usr//lib/x86_64-linux-gnu/

RUN apt-get update && apt-get install -y wget
RUN wget https://github.com/kazuki0824/recisdb-rs/releases/download/1.2.3/recisdb_1.2.3-1_amd64.deb
RUN apt install -y ./recisdb_1.2.3-1_amd64.deb
RUN rm ./recisdb_1.2.3-1_amd64.deb

ビルドする

sudo docker build -t custom/mirakc .

compose.yamlとconfig.ymlを用意する。

compose.yamlを作成する。

mirakc用のWebUIのmiraviewをあわせてインストールします
maeda577/miraview

nano compose.yaml
services:
  mirakc:
    image: custom/mirakc
    container_name: mirakc
    init: true
    restart: unless-stopped
    ports:
      - 40772:40772
    privileged: true
    devices:
      # チューナーデバイスをしていする
      # 以下は、PX-Q3U4を使用する場合
      - /dev/px4video0
      - /dev/px4video1
      - /dev/px4video2
      - /dev/px4video3
      - /dev/px4video4
      - /dev/px4video5
      - /dev/px4video6
      - /dev/px4video7
    volumes:
      - /var/run/pcscd/pcscd.comm:/var/run/pcscd/pcscd.comm
      - mirakc-epg:/var/lib/mirakc/epg
      - ./config.yml:/etc/mirakc/config.yml:ro
      - /mnt/tvrec/mirakc:/var/lib/mirakc/recording #<----録画先を指定する>
      - miraview-html:/var/www/miraview:ro
    environment:
      TZ: Asia/Tokyo
      RUST_LOG: info

  miraview:
    image: docker.io/mirakc/mirakc:alpine
    container_name: miraview-loader
    restart: "no"
    volumes:
      - miraview-html:/var/www/miraview
    working_dir: /var/www/miraview
    environment:
      MIRAVIEW_VERSION: v0.1.2
    entrypoint: ash
    command: -c "curl -L https://github.com/maeda577/miraview/releases/download/$$MIRAVIEW_VERSION/build.tar.gz | tar -zxvf -"

volumes:
  mirakc-epg:
    name: mirakc_epg
    driver: local
  miraview-html:
    name: miraview_html
    driver: local

config.ymlを作成する

isdb-scannerで作成されたConfig.ymlをもとに作成を行う

CP ~/scanned/mirakc/config.yml ~/mirakc/config.yml
nano config.yml
server:
  addrs:
    - http: 0.0.0.0:40772
  mounts:
    /miraview:
      path: /var/www/miraview
      index: index.html

epg:
  cache-dir: /var/lib/mirakc/epg

recording:
  records-dir: /var/lib/mirakc/recording/recorded
  basedir: /var/lib/mirakc/recording

channels:
  - name: NHKEテレ静岡
    type: GR
    channel: T14
    extra-args: ''
    disabled: false
  - name: SBS
    type: GR
    channel: T15
    extra-args: ''
    disabled: false
  - name: テレビ静岡
    type: GR
    channel: T17
    extra-args: ''
    disabled: false
  - name: 静岡朝日テレビ
    type: GR
    channel: T23
    extra-args: ''
    disabled: false
  - name: NHK総合・静岡
    type: GR
    channel: T24
    extra-args: ''
    disabled: false
  - name: Daiichi-TV
    type: GR
    channel: T25
    extra-args: ''
    disabled: false
tuners:
  - name: 'PLEX PX-Q3U4 (Terrestrial) #1'
    types:
      - GR
    command: recisdb tune --device /dev/px4video2 --channel {{{channel}}} -
    disabled: false
  - name: 'PLEX PX-Q3U4 (Terrestrial) #2'
    types:
      - GR
    command: recisdb tune --device /dev/px4video3 --channel {{{channel}}} -
    disabled: false
  - name: 'PLEX PX-Q3U4 (Terrestrial) #3'
    types:
      - GR
    command: recisdb tune --device /dev/px4video6 --channel {{{channel}}} -
    disabled: false
  - name: 'PLEX PX-Q3U4 (Terrestrial) #4'
    types:
      - GR
    command: recisdb tune --device /dev/px4video7 --channel {{{channel}}} -
    disabled: false
  - name: 'PLEX PX-Q3U4 (Satellite) #1'
    types:
      - BS
      - CS
    command: recisdb tune --device /dev/px4video0 --channel {{{channel}}} {{{extra_args}}} -
    disabled: false
  - name: 'PLEX PX-Q3U4 (Satellite) #2'
    types:
      - BS
      - CS
    command: recisdb tune --device /dev/px4video1 --channel {{{channel}}} {{{extra_args}}} -
    disabled: false
  - name: 'PLEX PX-Q3U4 (Satellite) #3'
    types:
      - BS
      - CS
    command: recisdb tune --device /dev/px4video4 --channel {{{channel}}} {{{extra_args}}} -
    disabled: false
  - name: 'PLEX PX-Q3U4 (Satellite) #4'
    types:
      - BS
      - CS
    command: recisdb tune --device /dev/px4video5 --channel {{{channel}}} {{{extra_args}}} -
    disabled: false
filters:
  # Optionally, you can specify a command to process TS packets before sending
  # them to a client.
  #
  # The following command processes TS packets on a remote server listening on
  # TCP port 40774.
  decode-filter:
    command: >-
      socat -,cool-write tcp-connect:remote:40774

epg: cache-dirとrecording: records-dirを作成して置かないとmirakcの起動時にエラーとなったため作成する

sudo mkdir /var/lib/mirakc/epg
sudo mkdir /mnt/tvrec/mirakc/recorded

コンテナを起動する

docker compose up

起動して、特にエラーがなければOK

EPGの取得が終わるのを暫く待ってから、http://[mirakcが動いているIPアドレス]:[ポート]/miraview/index.html へアクセスする
miraviewで番組表が表示されるのが確認できます

コメントを残す

メールアドレスが公開されることはありません。 が付いている欄は必須項目です