RPi+S1UDでTV視聴
1.mpeg2ライセンスを買う
2.recdvbをビルドしてインストール、isdbt_rio.inpも忘れずに
3.以下のスクリプトの第1引数にチャンネル、第2引数以降に必要ならomxplayerのオプションを指定して実行
case文の箇所は視聴地域に合わせて修正

#!/bin/sh
case $1 in
1) ch=14 ;;
2) ch=13 ;;
4) ch=18 ;;
5) ch=22 ;;
6) ch=16 ;;
8) ch=20 ;;
*) exit ;;
esac
shift
recdvb --b25 --strip --udp --addr localhost --port 8888 --sid hd $ch - &
omxplayer ${@+"$@"} --live udp://localhost:8888/
kill $!