Compare commits

...

2 commits

Author SHA1 Message Date
deflax eec8482df3 change the vod embed template 2024-06-23 23:23:50 +00:00
deflax 43d7145b18 remove the mention of database in the log 2024-06-23 23:18:53 +00:00
2 changed files with 5 additions and 5 deletions

View file

@ -157,9 +157,9 @@ async def query_database():
video_download_url = f'https://{scheduler_hostname}/video/download/{video_filename}'
video_filename_no_extension = video_filename.split('.')[0]
video_watch_url = f'https://{scheduler_hostname}/video/watch/{video_filename_no_extension}'
embed = discord.Embed(title=f'{rec_stream_name}',
embed = discord.Embed(title=f'VOD: {video_filename_no_extension}',
url=f'{video_watch_url}',
description=f'{video_filename_no_extension}',
description=f'{rec_stream_name}',
colour=0x00b0f4,
timestamp=datetime.now())
embed.add_field(name="Download",
@ -169,7 +169,7 @@ async def query_database():
value=f'[plyr.js player]({video_watch_url}) :]',
inline=True)
#embed.set_image(url=thumb_url)
embed.set_thumbnail(url=f'{img_url}/logo-96.png')
#embed.set_thumbnail(url=f'{img_url}/logo-96.png')
embed.set_footer(text="DeflaxTV",
icon_url=f'{img_url}/logo-96.png')
# Sending the embed to the channel

View file

@ -61,7 +61,7 @@ def process_running_channel(database, scheduler, stream_id, stream_name, stream_
if stream_start == "never":
# Skip channels that are set to never start automatically
return
logger_job.warning(f'{stream_id} ({stream_name}) has been registered to the database')
logger_job.warning(f'{stream_id} ({stream_name}) has been registered.')
if stream_start == "now":
logger_job.warning("Stream should start now. Preparing")
# Check if the stream_hls_url returns 200
@ -99,7 +99,7 @@ def remove_channel_from_database(database, scheduler, stream_id, stream_name, st
global playhead
global rechead
if stream_id in database:
logger_job.warning(f'{stream_id} ({stream_name}) will be removed from the database. Reason: {state.exec}')
logger_job.warning(f'{stream_id} ({stream_name}) will be removed. Reason: {state.exec}')
database.pop(stream_id)
try:
scheduler.remove_job(stream_id)