mirror of
https://github.com/Rapptz/discord.py.git
synced 2025-06-07 12:18:59 +00:00
Improve basic_voice example
Add stream option and command so we don't always have to download a file Move repeated voice check code to before_invoke hook Add typing indicators when making YTDLSources
This commit is contained in:
parent
796ff6d7e6
commit
27063a91c7
@ -20,7 +20,7 @@ ytdl_format_options = {
|
|||||||
'quiet': True,
|
'quiet': True,
|
||||||
'no_warnings': True,
|
'no_warnings': True,
|
||||||
'default_search': 'auto',
|
'default_search': 'auto',
|
||||||
'source_address': '0.0.0.0' # ipv6 addresses cause issues sometimes
|
'source_address': '0.0.0.0' # bind to ipv4 since ipv6 addresses cause issues sometimes
|
||||||
}
|
}
|
||||||
|
|
||||||
ffmpeg_options = {
|
ffmpeg_options = {
|
||||||
@ -41,15 +41,15 @@ class YTDLSource(discord.PCMVolumeTransformer):
|
|||||||
self.url = data.get('url')
|
self.url = data.get('url')
|
||||||
|
|
||||||
@classmethod
|
@classmethod
|
||||||
async def from_url(cls, url, *, loop=None):
|
async def from_url(cls, url, *, loop=None, stream=False):
|
||||||
loop = loop or asyncio.get_event_loop()
|
loop = loop or asyncio.get_event_loop()
|
||||||
data = await loop.run_in_executor(None, ytdl.extract_info, url)
|
data = await loop.run_in_executor(None, lambda: ytdl.extract_info(url, download=not stream))
|
||||||
|
|
||||||
if 'entries' in data:
|
if 'entries' in data:
|
||||||
# take first item from a playlist
|
# take first item from a playlist
|
||||||
data = data['entries'][0]
|
data = data['entries'][0]
|
||||||
|
|
||||||
filename = ytdl.prepare_filename(data)
|
filename = data['url'] if stream else ytdl.prepare_filename(data)
|
||||||
return cls(discord.FFmpegPCMAudio(filename, **ffmpeg_options), data=data)
|
return cls(discord.FFmpegPCMAudio(filename, **ffmpeg_options), data=data)
|
||||||
|
|
||||||
|
|
||||||
@ -70,15 +70,6 @@ class Music:
|
|||||||
async def play(self, ctx, *, query):
|
async def play(self, ctx, *, query):
|
||||||
"""Plays a file from the local filesystem"""
|
"""Plays a file from the local filesystem"""
|
||||||
|
|
||||||
if ctx.voice_client is None:
|
|
||||||
if ctx.author.voice.channel:
|
|
||||||
await ctx.author.voice.channel.connect()
|
|
||||||
else:
|
|
||||||
return await ctx.send("Not connected to a voice channel.")
|
|
||||||
|
|
||||||
if ctx.voice_client.is_playing():
|
|
||||||
ctx.voice_client.stop()
|
|
||||||
|
|
||||||
source = discord.PCMVolumeTransformer(discord.FFmpegPCMAudio(query))
|
source = discord.PCMVolumeTransformer(discord.FFmpegPCMAudio(query))
|
||||||
ctx.voice_client.play(source, after=lambda e: print('Player error: %s' % e) if e else None)
|
ctx.voice_client.play(source, after=lambda e: print('Player error: %s' % e) if e else None)
|
||||||
|
|
||||||
@ -86,22 +77,24 @@ class Music:
|
|||||||
|
|
||||||
@commands.command()
|
@commands.command()
|
||||||
async def yt(self, ctx, *, url):
|
async def yt(self, ctx, *, url):
|
||||||
"""Streams from a url (almost anything youtube_dl supports)"""
|
"""Plays from a url (almost anything youtube_dl supports)"""
|
||||||
|
|
||||||
if ctx.voice_client is None:
|
|
||||||
if ctx.author.voice.channel:
|
|
||||||
await ctx.author.voice.channel.connect()
|
|
||||||
else:
|
|
||||||
return await ctx.send("Not connected to a voice channel.")
|
|
||||||
|
|
||||||
if ctx.voice_client.is_playing():
|
|
||||||
ctx.voice_client.stop()
|
|
||||||
|
|
||||||
|
async with ctx.typing():
|
||||||
player = await YTDLSource.from_url(url, loop=self.bot.loop)
|
player = await YTDLSource.from_url(url, loop=self.bot.loop)
|
||||||
ctx.voice_client.play(player, after=lambda e: print('Player error: %s' % e) if e else None)
|
ctx.voice_client.play(player, after=lambda e: print('Player error: %s' % e) if e else None)
|
||||||
|
|
||||||
await ctx.send('Now playing: {}'.format(player.title))
|
await ctx.send('Now playing: {}'.format(player.title))
|
||||||
|
|
||||||
|
@commands.command()
|
||||||
|
async def stream(self, ctx, *, url):
|
||||||
|
"""Streams from a url (same as yt, but doesn't predownload)"""
|
||||||
|
|
||||||
|
async with ctx.typing():
|
||||||
|
player = await YTDLSource.from_url(url, loop=self.bot.loop, stream=True)
|
||||||
|
ctx.voice_client.play(player, after=lambda e: print('Player error: %s' % e) if e else None)
|
||||||
|
|
||||||
|
await ctx.send('Now playing: {}'.format(player.title))
|
||||||
|
|
||||||
@commands.command()
|
@commands.command()
|
||||||
async def volume(self, ctx, volume: int):
|
async def volume(self, ctx, volume: int):
|
||||||
"""Changes the player's volume"""
|
"""Changes the player's volume"""
|
||||||
@ -112,20 +105,31 @@ class Music:
|
|||||||
ctx.voice_client.source.volume = volume
|
ctx.voice_client.source.volume = volume
|
||||||
await ctx.send("Changed volume to {}%".format(volume))
|
await ctx.send("Changed volume to {}%".format(volume))
|
||||||
|
|
||||||
|
|
||||||
@commands.command()
|
@commands.command()
|
||||||
async def stop(self, ctx):
|
async def stop(self, ctx):
|
||||||
"""Stops and disconnects the bot from voice"""
|
"""Stops and disconnects the bot from voice"""
|
||||||
|
|
||||||
await ctx.voice_client.disconnect()
|
await ctx.voice_client.disconnect()
|
||||||
|
|
||||||
|
@play.before_invoke
|
||||||
|
@yt.before_invoke
|
||||||
|
@stream.before_invoke
|
||||||
|
async def ensure_voice(self, ctx):
|
||||||
|
if ctx.voice_client is None:
|
||||||
|
if ctx.author.voice:
|
||||||
|
await ctx.author.voice.channel.connect()
|
||||||
|
else:
|
||||||
|
await ctx.send("You are not connected to a voice channel.")
|
||||||
|
raise commands.CommandError("Author not connected to a voice channel.")
|
||||||
|
elif ctx.voice_client.is_playing():
|
||||||
|
ctx.voice_client.stop()
|
||||||
|
|
||||||
bot = commands.Bot(command_prefix=commands.when_mentioned_or("!"),
|
bot = commands.Bot(command_prefix=commands.when_mentioned_or("!"),
|
||||||
description='Music bot example')
|
description='Relatively simple music bot example')
|
||||||
|
|
||||||
@bot.event
|
@bot.event
|
||||||
async def on_ready():
|
async def on_ready():
|
||||||
print('Logged in as {0.id}/{0}'.format(bot.user))
|
print('Logged in as {0} ({0.id})'.format(bot.user))
|
||||||
print('------')
|
print('------')
|
||||||
|
|
||||||
bot.add_cog(Music(bot))
|
bot.add_cog(Music(bot))
|
||||||
|
Loading…
x
Reference in New Issue
Block a user