Skip to content

Commit

Permalink
Update: [Server][LiveEncodingTask] EDCB バックエンド利用時、EDCB NetworkTV ID を…
Browse files Browse the repository at this point in the history
…ログに出力する
  • Loading branch information
tsukumijima committed Sep 13, 2023
1 parent fc4c9ba commit fee4d11
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 1 deletion.
2 changes: 1 addition & 1 deletion server/app/streams/LiveEncodingTask.py
Original file line number Diff line number Diff line change
Expand Up @@ -607,7 +607,7 @@ async def run(self) -> None:

# チューナーを起動する
# アンロック状態のチューナーインスタンスがあれば、自動的にそのチューナーが再利用される
self.livestream.setStatus('Standby', 'チューナーを起動しています…')
self.livestream.setStatus('Standby', f'チューナーを起動しています… (EDCB NetworkTV ID: {self.livestream.tuner.getEDCBNetworkTVID()})')
is_tuner_opened = await self.livestream.tuner.open()

# チューナーの起動に失敗した
Expand Down
11 changes: 11 additions & 0 deletions server/app/utils/EDCB.py
Original file line number Diff line number Diff line change
Expand Up @@ -158,6 +158,17 @@ def __getNetworkTVID(self) -> int:
return edcb_networktv_id


def getEDCBNetworkTVID(self) -> int:
"""
EpgDataCap_Bon の NetworkTV ID を取得する
Returns:
int: 取得した EpgDataCap_Bon の NetworkTV ID
"""

return self._edcb_networktv_id


async def open(self) -> bool:
"""
チューナーを起動する
Expand Down

0 comments on commit fee4d11

Please sign in to comment.