iptv でテレビを見る。
Mac で世界中のテレビを見る方法 VLC より具合が分かりやすい。iptv-org/iptv: Collection of publicly available IPTV channels from all over the world
👉 https://t.co/zGZptCoLGq pic.twitter.com/EPu79TzYEl— chanzmao (@maochanz) September 26, 2024
モバイル、パソコンを問わずいろいろなOSで見ることができる。
ざっくり1分遅れで、気の利いた動画クライアントで見ることができるのだが、
GUI アプリでは、不具合時の状況が掴みづらい。
なので、ターミナル経由で見てみる。
👉 Roshan-R/termv: A terminal iptv player written in bash
この termv というアプリ。
ターミナル上の検索付き選択肢一覧リスト表示。
どうやって作ってるのか。
コードを見てみます。
SHELL="${BASH_BINARY}" \
fzf -e -i --reverse --cycle --with-nth="1..-2"\
--bind "enter:execute(_play {})"\
--bind "double-click:execute(_play {})"\
--header="Select channel (press Escape to exit)" -q "${*:-}" \
< <( printf '%s\n' "${CHANNELS_LIST}" )
https://github.com/Roshan-R/termv/blob/0b7468d1bba239e50adc7e7693035f3652b9bec4/termv#L210
「fzf」というやつ。
多くの人が集まっています。
👉️ junegunn/fzf: :cherry_blossom: A command-line fuzzy finder
先人先生、今回も勉強になります。
いつもありがとうございます。