mirror of
https://github.com/RYGhub/royalnet.git
synced 2024-11-24 03:54:20 +00:00
Merge
This commit is contained in:
commit
d40620c58a
1 changed files with 36 additions and 28 deletions
|
@ -230,7 +230,7 @@ class YoutubeDLVideo(Video):
|
||||||
}],
|
}],
|
||||||
"outtmpl": self.get_filename(),
|
"outtmpl": self.get_filename(),
|
||||||
"quiet": True}) as ytdl:
|
"quiet": True}) as ytdl:
|
||||||
ytdl.download(self.url)
|
ytdl.download([self.url])
|
||||||
logger.info(f"Completed youtube_dl download of {repr(self)}")
|
logger.info(f"Completed youtube_dl download of {repr(self)}")
|
||||||
self.is_ready = True
|
self.is_ready = True
|
||||||
|
|
||||||
|
@ -324,11 +324,11 @@ class VideoQueue():
|
||||||
|
|
||||||
def not_ready_videos(self, limit: typing.Optional[int] = None):
|
def not_ready_videos(self, limit: typing.Optional[int] = None):
|
||||||
"""Return the non-ready videos in the first limit positions of the queue."""
|
"""Return the non-ready videos in the first limit positions of the queue."""
|
||||||
l = []
|
video_list = []
|
||||||
for video in self.list[:limit]:
|
for video in self.list[:limit]:
|
||||||
if not video.is_ready:
|
if not video.is_ready:
|
||||||
l.append(video)
|
video_list.append(video)
|
||||||
return l
|
return video_list
|
||||||
|
|
||||||
def __getitem__(self, index: int) -> Video:
|
def __getitem__(self, index: int) -> Video:
|
||||||
"""Get an element from the list."""
|
"""Get an element from the list."""
|
||||||
|
@ -669,8 +669,10 @@ class RoyalDiscordBot(discord.Client):
|
||||||
with async_timeout.timeout(self.max_video_ready_time):
|
with async_timeout.timeout(self.max_video_ready_time):
|
||||||
await loop.run_in_executor(executor, video.ready_up)
|
await loop.run_in_executor(executor, video.ready_up)
|
||||||
except asyncio.TimeoutError:
|
except asyncio.TimeoutError:
|
||||||
logger.warning(f"Video {repr(video)} took more than {self.max_video_ready_time} to download, skipping...")
|
logger.warning(
|
||||||
await self.main_channel.send(f"⚠️ La preparazione di {video} ha richiesto più di {self.max_video_ready_time} secondi, pertanto è stato rimosso dalla coda.")
|
f"Video {repr(video)} took more than {self.max_video_ready_time} to download, skipping...")
|
||||||
|
await self.main_channel.send(
|
||||||
|
f"⚠️ La preparazione di {video} ha richiesto più di {self.max_video_ready_time} secondi, pertanto è stato rimosso dalla coda.")
|
||||||
del self.video_queue.list[index]
|
del self.video_queue.list[index]
|
||||||
continue
|
continue
|
||||||
except Exception as e:
|
except Exception as e:
|
||||||
|
@ -711,10 +713,12 @@ class RoyalDiscordBot(discord.Client):
|
||||||
# Try to generate an AudioSource
|
# Try to generate an AudioSource
|
||||||
if self.video_queue.now_playing is None:
|
if self.video_queue.now_playing is None:
|
||||||
continue
|
continue
|
||||||
|
while True:
|
||||||
try:
|
try:
|
||||||
audio_source = self.video_queue.now_playing.make_audio_source()
|
audio_source = self.video_queue.now_playing.make_audio_source()
|
||||||
|
break
|
||||||
except errors.VideoIsNotReady:
|
except errors.VideoIsNotReady:
|
||||||
continue
|
await asyncio.sleep(1)
|
||||||
# Start playing the AudioSource
|
# Start playing the AudioSource
|
||||||
logger.info(f"Started playing {self.video_queue.now_playing.plain_text()}.")
|
logger.info(f"Started playing {self.video_queue.now_playing.plain_text()}.")
|
||||||
voice_client.play(audio_source)
|
voice_client.play(audio_source)
|
||||||
|
@ -729,7 +733,8 @@ class RoyalDiscordBot(discord.Client):
|
||||||
try:
|
try:
|
||||||
session = db.Session()
|
session = db.Session()
|
||||||
enqueuer = await loop.run_in_executor(executor, session.query(db.Discord)
|
enqueuer = await loop.run_in_executor(executor, session.query(db.Discord)
|
||||||
.filter_by(discord_id=self.video_queue.now_playing.enqueuer.id)
|
.filter_by(
|
||||||
|
discord_id=self.video_queue.now_playing.enqueuer.id)
|
||||||
.one_or_none)
|
.one_or_none)
|
||||||
played_music = db.PlayedMusic(enqueuer=enqueuer,
|
played_music = db.PlayedMusic(enqueuer=enqueuer,
|
||||||
filename=self.video_queue.now_playing.database_text(),
|
filename=self.video_queue.now_playing.database_text(),
|
||||||
|
@ -742,10 +747,12 @@ class RoyalDiscordBot(discord.Client):
|
||||||
# Send a message in chat
|
# Send a message in chat
|
||||||
for key in song_special_messages:
|
for key in song_special_messages:
|
||||||
if key in self.video_queue.now_playing.name.lower():
|
if key in self.video_queue.now_playing.name.lower():
|
||||||
await self.main_channel.send(song_special_messages[key].format(song=str(self.video_queue.now_playing)))
|
await self.main_channel.send(
|
||||||
|
song_special_messages[key].format(song=str(self.video_queue.now_playing)))
|
||||||
break
|
break
|
||||||
else:
|
else:
|
||||||
await self.main_channel.send(f":arrow_forward: Ora in riproduzione: {str(self.video_queue.now_playing)}")
|
await self.main_channel.send(
|
||||||
|
f":arrow_forward: Ora in riproduzione: {str(self.video_queue.now_playing)}")
|
||||||
|
|
||||||
async def inactivity_countdown(self):
|
async def inactivity_countdown(self):
|
||||||
while True:
|
while True:
|
||||||
|
@ -804,7 +811,7 @@ class RoyalDiscordBot(discord.Client):
|
||||||
logger.debug(f"Waiting {self.activity_report_sample_time} seconds before the next record.")
|
logger.debug(f"Waiting {self.activity_report_sample_time} seconds before the next record.")
|
||||||
await asyncio.sleep(self.activity_report_sample_time)
|
await asyncio.sleep(self.activity_report_sample_time)
|
||||||
|
|
||||||
async def add_video_from_url(self, url, index: typing.Optional[int] = None, enqueuer: discord.Member = None):
|
async def add_video_from_url(self, url: str, index: typing.Optional[int] = None, enqueuer: discord.Member = None):
|
||||||
# Retrieve info
|
# Retrieve info
|
||||||
logger.debug(f"Retrieving info for {url}.")
|
logger.debug(f"Retrieving info for {url}.")
|
||||||
with youtube_dl.YoutubeDL({"quiet": True,
|
with youtube_dl.YoutubeDL({"quiet": True,
|
||||||
|
@ -916,7 +923,7 @@ class RoyalDiscordBot(discord.Client):
|
||||||
# This is a search
|
# This is a search
|
||||||
await self.add_video_from_url(url=f"ytsearch:{search}", enqueuer=author)
|
await self.add_video_from_url(url=f"ytsearch:{search}", enqueuer=author)
|
||||||
await channel.send(f"✅ Video aggiunto alla coda.")
|
await channel.send(f"✅ Video aggiunto alla coda.")
|
||||||
logger.debug(f"Added ytsearch:{search} to the queue as YouTube search.")
|
logger.debug(f"Added ytsearch:{search} to the queue.")
|
||||||
|
|
||||||
@command
|
@command
|
||||||
@requires_connected_voice_client
|
@requires_connected_voice_client
|
||||||
|
@ -1107,7 +1114,8 @@ class RoyalDiscordBot(discord.Client):
|
||||||
"Sintassi: `!radiomessages <on|off>`")
|
"Sintassi: `!radiomessages <on|off>`")
|
||||||
return
|
return
|
||||||
logger.info(f"Radio messages status to {'enabled' if self.radio_messages_next_in < math.inf else 'disabled'}.")
|
logger.info(f"Radio messages status to {'enabled' if self.radio_messages_next_in < math.inf else 'disabled'}.")
|
||||||
await channel.send(f"📻 Messaggi radio **{'attivati' if self.radio_messages_next_in < math.inf else 'disattivati'}**.")
|
await channel.send(
|
||||||
|
f"📻 Messaggi radio **{'attivati' if self.radio_messages_next_in < math.inf else 'disattivati'}**.")
|
||||||
|
|
||||||
@command
|
@command
|
||||||
@requires_connected_voice_client
|
@requires_connected_voice_client
|
||||||
|
|
Loading…
Reference in a new issue