Let caller specify channel name format when doing channel scan #135
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
現状のチャネルスキャンAPIはPTx系のチャンネル名に特化していて、Plex系などの環境だと正常にスキャンできていません。
BonRecTest+Plex MLT8PEなどの環境だとCSのチャンネルIDは
CS2
でなく2
を期待していますので、正常に実行されたもののどのパラメータを渡してもデフォルトのチャンネル(1
)が開けれてそのチャンネルのサービスしか列挙されません。こちらの修正は現状のチャンネルのパラメータを維持しながらチャンネルスキャンAPIにて
channelNameFormat
が設定されたらチューナーのコマンドに指定のフォーマットでチャンネルのパラメータが渡されます。例)
channelNameFormat
: 未設定<channel>
値:CS2
からCS24
channelNameFormat
:CS{ch}
(現状の挙動と一致)<channel>
値:CS2
からCS24
channelNameFormat
:{ch}
<channel>
値:2
から24
channelNameFormat
:{ch000}
(チャンネル番号を3桁のゼロパッドの数字にする)<channel>
値:002
から024
利点としては
channels.yml
を設定する手間が省けます。マージのご検討をお願いいたします🙇