为什么在ffmpeg中找不到https协议?

Why is there no https protocol in ffmpeg found?

我正在尝试制作一个 discord.py 音乐机器人。它应该从那里播放音乐:

channel = message.author.voice.channel
    if message.content.startswith("IT play"):
        voicechannel = await channel.connect()
        songname = message.content.split(" ")[2]
        vurl = "https://www.youtube.com/watch?v=kn4nL99Vb5A"
        song = pafy.new(vurl)
        audio = song.getbestaudio()
        print(audio.url)
        source = discord.FFmpegPCMAudio(audio.url)
        voicechannel.play(source)

但是一旦我 运行 机器人,就会出现此消息: Error

两个链接完全相同。如果您需要更多代码来帮助我,我会提供给您。我试图自己找到解决方案,我认为问题在于 https 不是 ffmpeg 输入。但是由于有 Linux- 用户的解决方案,我想知道是否也有 Windows 的解决方案,但我没有找到。另外,我无法找到 ./configure 文件。如果我收到非常详细的答案,我将不胜感激,因为我对 python.

还很陌生

TLS 支持由必须在编译时链接的外部库提供。

Windows 个二进制文件的两个提供程序都提供这样的构建:http://www.ffmpeg.org/download.html