Skip to content

Commit

Permalink
Update: Readme.md
Browse files Browse the repository at this point in the history
  • Loading branch information
tsukumijima committed Sep 25, 2024
1 parent 90d9d56 commit 300146a
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
7 changes: 6 additions & 1 deletion Readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -216,11 +216,16 @@ sudo chmod +x /usr/local/bin/isdb-scanner

## 使い方

![Screenshot](https://github.com/tsukumijima/ISDBScanner/assets/39271166/4c2caa09-4e0f-4bf8-a393-795562c36c9e)
![Screenshot](https://github.com/user-attachments/assets/ff759d35-b902-47f6-aeb4-18e5949bee30)

ISDBScanner は、引数で指定されたディレクトリ (デフォルト: `./scanned/`) 以下に複数のファイルを出力します。
出力される各ファイルのフォーマットは [対応出力フォーマット](#対応出力フォーマット) を参照してください。

> [!TIP]
> ISDBScanner v1.2.0 以降では、`--lnb` オプションを指定すると、衛星放送受信時にチューナーからアンテナに給電できます(動作未確認)。
> `--lnb 11v``--lnb 15v` の両方を指定できますが、px4_drv 対応チューナーには `--lnb 15v` のみ指定できます。
> 明示的に LNB 給電を無効化するには、`--lnb low` を指定します。何も指定されなかったときは LNB 給電を行いません。
### PC に接続されている利用可能なチューナーのリストを表示

![Screenshot](https://github.com/tsukumijima/ISDBScanner/assets/39271166/99a9fcd4-0afb-4c42-914a-d284fb3cf057)
Expand Down
2 changes: 1 addition & 1 deletion isdb_scanner/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ def main(
exclude_pay_tv: bool = typer.Option(False, help='Exclude pay-TV channels from scan results and include only free-to-air terrestrial and BS channels.'),
output_recisdb_log: bool = typer.Option(False, help='Output recisdb log to stderr.'),
list_tuners: bool = typer.Option(False, help='List available ISDB-T/ISDB-S tuners and exit.'),
lnb: LNBVoltage = typer.Option(LNBVoltage.LOW, help='LNB voltage for satellite antenna power supply. If none, the LNB voltage is assumed unset.'),
lnb: LNBVoltage = typer.Option(LNBVoltage.LOW, help='LNB voltage for satellite antenna power supply.'),
version: bool = typer.Option(None, '--version', callback=version, is_eager=True, help='Show version information.'),
):

Expand Down

0 comments on commit 300146a

Please sign in to comment.