EPGStation
https://github.com/l3tnun/EPGStation
テレビ録画・視聴システム(チューナー除く)
API色々あるらしいけれど試してない
関連ツール
Slack通知 https://github.com/hiroxto/epgstation-slack-notification
Golang製
リリースがないので手元でビルドするのがややだるい
webhook URL指定ではないのでチャンネル指定とか細かくできるもののややAPI設定とかの手順がめんどい気がする
Discord通知 https://github.com/advancedbear/EPGS-to-Discord
node製
nodeあんま好きじゃないんだよな…
webhook URL指定なので拡張性あるかと思ったけどslackのwebhook URLとかだとエラーになる
Android TVで見る https://play.google.com/store/apps/details?id=com.daigorian.epcltvapp
公開停止されている様子 https://github.com/daig0rian/epcltvapp#ストアへの公開状況
現状のエンコードの感じ(QSV)
code:bash
ffmpeg \
-y \
-analyzeduration 10M \
-probesize 32M \
${isDualMono:+-dual_mono_mode main} \
-i "${INPUT}" \
-movflags faststart \
-vf yadif \
-preset veryfast \
-aspect 16:9 \
-c:v hevc_qsv \
-b:v 1500k \
-f mp4 \
-c:a aac \
-ar 48000 \
-b:a "${videoHeight>720?192k:128k}" \
-ac 2 \
"${OUTPUT}"