0

I'm trying to play the audio from the YouTube link on Discord, but nothing works. There are no errors.

Code for playback audio:

url = f"https://www.youtube.com/watch?v={video['id']}"
            player = await YTDLSource.from_url(f"{url}{video['id']}", loop=self.bot.loop, stream=True)
            voice_channel.play(player, after=None)

YTDLSource class:

import youtube_dl
import disnake

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': '192.168.0.20' # bind to ipv4 since ipv6 addresses cause issues sometimes
}

ffmpeg_options = {
    'options': '-vn'
}

ytdl = youtube_dl.YoutubeDL(ytdl_format_options)

class YTDLSource(disnake.PCMVolumeTransformer):
    def __init__(self, source, *, data, volume=0.5):
        super().__init__(source, volume)
        self.data = data
        self.title = data.get('title')
        self.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['title'] if stream else ytdl.prepare_filename(data)
        return cls(disnake.FFmpegPCMAudio(filename, **ffmpeg_options), data=data)

P.S: If with music installation, everything works

Xpeawey
  • 117
  • 1
  • 1
  • 4
  • I don't know if it maches exactly what you are looking for, but my answer was accepted on [a very similar StackOverflow question](https://stackoverflow.com/q/73428244). – Benjamin Loison Dec 15 '22 at 19:19

0 Answers0