Add demo media files and update logging format

This commit is contained in:
√(noham)²
2025-12-20 13:15:41 +01:00
parent 4f0b0a655a
commit 9db4a34714
6 changed files with 4 additions and 3 deletions

1
.gitignore vendored
View File

@@ -222,3 +222,4 @@ video/
dev_test/
widevine/
info.md
/download

BIN
docs/demo/Demo-CLI-Mode.gif Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.0 MiB

BIN
docs/demo/Demo-CLI-Mode.mp4 Normal file

Binary file not shown.

Binary file not shown.

After

Width:  |  Height:  |  Size: 8.8 MiB

Binary file not shown.

View File

@@ -179,9 +179,9 @@ def select_oqee_channel():
selected_channel_details = channels_data.get(selected_channel_id)
if selected_channel_details:
logger.info("You have selected:")
logger.info(" - Name: %s", selected_channel_details.get("name"))
logger.info(" - ID: %s", selected_channel_details.get("id"))
logger.info(" - Freebox ID: %s", selected_channel_details.get("freebox_id"))
logger.info(" Name: %s", selected_channel_details.get("name"))
logger.info(" ID: %s", selected_channel_details.get("id"))
logger.info(" Freebox ID: %s", selected_channel_details.get("freebox_id"))
else:
logger.warning("Unable to find details for the selected channel.")
return selected_channel_details