- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我创建了这个音乐机器人,我想改进我的队列命令,因为它目前不是很实用。每次我将一首歌排队时,我都必须使用播放命令来播放它,但我想自动播放下一首歌曲,将队列命令实现到播放命令中也很酷,但我不知道如何去做吧。
你能帮忙吗??
youtube_dl.utils.bug_reports_message = lambda: ''
ytdl_format_options = {
'format': 'bestaudio/best',
'outtmpl': '%(extractor)s-%(id)s-%(title)s.%(ext)s',
'restrictfilenames': True,
'noplaylist': True,
'nocheckcertificate': True,
'ignoreerrors': False,
'logtostderr': False,
'quiet': True,
'no_warnings': True,
'default_search': 'auto',
'source_address': '0.0.0.0' # bind to ipv4 since ipv6 addresses cause issues sometimes
}
ffmpeg_options = {
'options': '-vn'
}
ytdl = youtube_dl.YoutubeDL(ytdl_format_options)
class YTDLSource(discord.PCMVolumeTransformer):
def __init__(self, source, *, data, volume=0.5):
super().__init__(source, volume)
self.data = data
self.title = data.get('title')
self.url = data.get('url')
@classmethod
async def from_url(cls, url, *, loop=None, stream=False):
loop = loop or asyncio.get_event_loop()
data = await loop.run_in_executor(None, lambda: ytdl.extract_info(url, download=not stream))
if 'entries' in data:
# take first item from a playlist
data = data['entries'][0]
filename = data['url'] if stream else ytdl.prepare_filename(data)
return cls(discord.FFmpegPCMAudio(filename, **ffmpeg_options), data=data)
queue = []
@client.command(name='queue', help='This command adds a song to the queue')
async def queue_(ctx, url):
global queue
queue.append(url)
await ctx.send(f'`{url}` added to queue!')
@client.command(name='play', help='This command plays songs')
async def play(ctx):
global queue
server = ctx.message.guild
voice_channel = server.voice_client
async with ctx.typing():
player = await YTDLSource.from_url(queue[0], loop=client.loop, stream=True)
voice_channel.play(player, after=lambda e: print('Player error: %s' % e) if e else None)
await ctx.send('**Now playing:** {}'.format(player.title))
del(queue[0])
编辑:所以我尝试做这样的事情但它不起作用,当我尝试使用 !play 播放歌曲时它不会将其放入队列中,它说:
ClientException: Already playing audio.
当这首歌结束时,它说:
TypeError: next() missing 2 required positional arguments: 'queue' and 'song'
这是代码:
queue = []
def next(client, queue, song):
if len(queue)>0:
new_song= queue[0]
del queue[0]
play(client, queue, new_song)
@bot.command()
async def join (ctx):
member = ctx.author
if not ctx.message.author.voice:
await ctx.send(f"{member.mention} You are not connected to a voice channel ❌")
else:
channel=ctx.message.author.voice.channel
await channel.connect()
@bot.command(help="This command plays a song.")
async def play (ctx,*args):
server = ctx.message.guild
voice_channel= server.voice_client
url=""
for word in args:
url+=word
url+=''
async with ctx.typing():
player = await YTDLSource.from_url(url ,loop=bot.loop, stream=True)
queue.append(player)
voice_channel.play (player, after=lambda e: next(ctx))
await ctx.send(f"**Now playing:** {player.title}")
最佳答案
在您的异步内部 play
函数,您有以下代码行:
voice_channel.play(player, after=lambda e: print('Player error: %s' % e) if e else None)
如您所见,有一个参数可用于在机器人完成将音频播放到语音 channel 后执行操作。我建议您使用
after=
更改代码以递归播放下一首歌曲,而不是按照您目前的方式使用它。范围。您可以通过将 lambda 中的当前打印语句更改为异步调用
play
来实现此目的。再次发挥作用。
del()
的同时函数非常适合学习如何优化代码,但这并不是您想要实现它的方式。在这种情况下,您应该改为
.pop()
将其从队列中取出的值(例如:
queue.pop(0)
。您还应该知道弹出值会返回值,因此您可以直接将其实现到
YTDLSource.from_url()
函数的第一个参数中)。
del(queue[0])
,而是交换 queue[0]
from_url()
中的参数值方法与 queue.pop(0)
. queue
带有 Queue 类的数组,因为您可以很容易地向其中添加方法和其他有用的包装函数,但这不是必须的。 .play()
方法的 after
参数中),异步调用 play
再次发挥作用。 (例如,像这样- lambda e: await play(ctx)
)关于python - 如何改进我的队列系统 - Discord.py,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/67284492/
我对编码还比较陌生,但并非完全没有经验。处理有关金融计算器的学校作业。如果你们中的任何人可以查看我的代码以了解不良做法/可能的改进等,那就太好了。 我确实添加了一个“动画”启动(有很多 printf
小目标Trick 论文链接: https://paperswithcode.com/paper/slicing-aided-hyper-inference-and-fine-tuning 代码链接:h
if (firstPositionCpc && (firstPosition > 0 && firstPositionCpc 0 && topOfPageCpc 0 && firstPageCpc
我有 2 个表:“packages”和“items”。 “packages”有以下列:pack_id | item_id “items”有以下列......:item_id |输入 一个包可以有多个
我目前有一个 Pandas Dataframe,我在其中执行列之间的比较。我发现一种情况,在进行比较时存在空列,由于某种原因比较返回 else 值。我添加了一个额外的语句来将其清理为空。看看我是否可以
我正在处理一个查询,通过首先舍入它们的主要日期时间键来连接一个数据库中的多个表。数据库包含来自 openhab 的性能数据,每个表只有一个名为 Time 的主日期时间行和一个名为 Value 的值行。
问候 我有一个程序创建一个类的多个实例,在所有实例上运行相同的长时间运行的 Update 方法并等待完成。我从 this question 开始关注 Kev 的方法将更新添加到 ThreadPool.
我想在下学期的类(class)中取得领先,所以我制作了这个基本版本的 Blackjack 来开始理解 C 的基础知识,我希望您有任何想法可以帮助我更好地理解 C 和其正常的编码实践。 C 中的很多东西
我有一个要求,比如: 给定一个数组,其中包含随机数。需要输出元素出现的次数,有自带解决方案: var myArr = [3,2,1,2,3,1,4,5,4,6,7,7,9,1,123,0,123];
这是我的数据库项目。 表user_ select id, name from user_; id | name ----+---------- 1 | bartek 2 | bartek
我已经完成了一个小批量脚本来调整(动态)一些图像的大小: for a in *.{png,PNG,jpg,JPG,jpeg,JPEG,bmp,BMP} ; do convert "$a" -resiz
是否有更 pythonic 的方法来执行以下代码?我想在一行中完成 parsed_rows 是一个可以返回大小为 3 或 None 的元组的函数。 parsed_rows = [ parse_row(
关闭。这个问题是opinion-based .它目前不接受答案。 想要改进这个问题? 更新问题,以便 editing this post 可以用事实和引用来回答它. 关闭 9 年前。 Improv
下面的代码完成了我想要的,但还有其他更像 python 风格的方式吗? 文件格式: key1:value1,key2:value2,... key21:value21,key22:value22,..
如果两个英文单词只包含相同的字母,则它们是相似的。例如,food 和 good 不相似,但 dog 和 good 相似。 (如果A与B相似,则A中的所有字母都包含在B中,B中的所有字母都包含在A中。)
我有以下结构来表示二叉树: typedef struct node *pnode; typedef struct node { int val; pnode left; pnode
我有一个区域,它由受约束的 delaunay 三角剖分表示。我正在解决在两点之间寻找路径的问题。我正在使用 Marcelo Kallmann 提供的论文作为解决此问题的引用点。然而,而不是使用 Kal
如果我需要检查文本(字符串)中是否存在单词 A 或单词 B,如果我这样做会有性能差异: if(text.contains(wordA) || text.contains(wordB)) 要使用一些正则
Adjust To 我有上面这个简单的页面,上面有一个标签和一个文本框。我想在文本框中输入文本。 对我有帮助的 XPATH 是 //*[contains(tex
以下伪代码的elisp代码 if "the emacs version is less than 23.1.x" do something else something-else 写成 (if
我是一名优秀的程序员,十分优秀!