pimp my embed
This commit is contained in:
parent
5b646f6815
commit
676fbeed05
1 changed files with 14 additions and 9 deletions
|
@ -138,26 +138,31 @@ async def query_database():
|
||||||
if live_channel_id != 0:
|
if live_channel_id != 0:
|
||||||
live_channel = bot.get_channel(int(live_channel_id))
|
live_channel = bot.get_channel(int(live_channel_id))
|
||||||
if rechead != {}:
|
if rechead != {}:
|
||||||
|
await live_channel.send('Live stream is now offline.')
|
||||||
|
rec_stream_name = rechead['name']
|
||||||
video_filename = rechead['video']
|
video_filename = rechead['video']
|
||||||
thumb_filename = rechead['thumb']
|
thumb_filename = rechead['thumb']
|
||||||
rechead = {}
|
rechead = {}
|
||||||
video_url = f'https://{scheduler_hostname}/video/{video_filename}'
|
|
||||||
thumb_url = f'https://{scheduler_hostname}/thumb/{thumb_filename}'
|
|
||||||
|
|
||||||
# Creating an embed
|
# Creating an embed
|
||||||
embed = discord.Embed(title="Video",
|
video_url = f'https://{scheduler_hostname}/video/{video_filename}'
|
||||||
|
thumb_url = f'https://{scheduler_hostname}/thumb/{thumb_filename}'
|
||||||
|
watch_url = f'https://{scheduler_hostname}/watch/{video_filename}'
|
||||||
|
asset_url = f'https://{scheduler_hostname}/asset'
|
||||||
|
embed = discord.Embed(title=f'{rec_stream_name}',
|
||||||
|
url=f'{watch_url}',
|
||||||
colour=0x00b0f4,
|
colour=0x00b0f4,
|
||||||
timestamp=datetime.now())
|
timestamp=datetime.now())
|
||||||
embed.add_field(name="Download",
|
embed.add_field(name="Download",
|
||||||
value=f"[mp4]({video_url})",
|
value=f"[{video_filename}]({video_url})",
|
||||||
inline=True)
|
inline=True)
|
||||||
embed.add_field(name="Watch",
|
embed.add_field(name="Watch",
|
||||||
value="[plyr.js](https://deflax.net)",
|
value=f'[plyr.js]({watch_url})',
|
||||||
inline=True)
|
inline=True)
|
||||||
embed.set_image(url=thumb_url)
|
embed.set_image(url=thumb_url)
|
||||||
embed.set_thumbnail(url="https://deflax.net/img/logo-96.png")
|
embed.set_thumbnail(url=f'{asset_url}/logo-96.png')
|
||||||
embed.set_footer(text="DeflaxTV",
|
embed.set_footer(text="DeflaxTV",
|
||||||
icon_url="https://deflax.net/img/logo-96.png")
|
icon_url=f'{asset_url}/logo-96.png')
|
||||||
# Sending the embed to the channel
|
# Sending the embed to the channel
|
||||||
await live_channel.send(embed=embed)
|
await live_channel.send(embed=embed)
|
||||||
else:
|
else:
|
||||||
|
|
Loading…
Reference in a new issue