Discord Bot Python ffmpeg错误 [英] Discord Bot Python ffmpeg error

查看:67
本文介绍了Discord Bot Python ffmpeg错误的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

因此,我正在运行以下代码,该代码是更大文件的一部分。即使我安装了ffmpeg并将其设置为$ PATH变量,它仍会引发以下错误。我在运行OSX El Capitan的Mac上。这段代码使用适用于python 3.5.2。的discord模块。

So I'm running the following code which is part of a bigger file. It keeps throwing up the below error even though I've installed ffmpeg and set it to the $PATH variable. I'm on a Mac running OSX El Capitan. This code uses the discord module for python 3.5.2.

            author_channel = (message.author).voice_channel
            voice = await media_bot.join_voice_channel(author_channel)
            player = await voice.create_ytdl_player(video)
            player.start()

Traceback (most recent call last):
      File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/site-packages/discord/voice_client.py", line 431, in create_ffmpeg_player
        p = subprocess.Popen(args, stdin=stdin, stdout=subprocess.PIPE, stderr=stderr)
      File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/subprocess.py", line 947, in __init__
        restore_signals, start_new_session)
      File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/subprocess.py", line 1551, in _execute_child
        raise child_exception_type(errno_num, err_msg)
    FileNotFoundError: [Errno 2] No such file or directory: 'ffmpeg'

    The above exception was the direct cause of the following exception:

    Traceback (most recent call last):
      File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/site-packages/discord/client.py", line 307, in _run_event
        yield from getattr(self, event)(*args, **kwargs)
      File "/Users/bobgaudinmusic/Desktop/Programming/python/Discord Bots/MediaBot/mediaBot.py", line 37, in on_message
        player = await voice.create_ytdl_player(video)
      File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/site-packages/discord/voice_client.py", line 541, in create_ytdl_player
        player = self.create_ffmpeg_player(download_url, **kwargs)
      File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/site-packages/discord/voice_client.py", line 434, in create_ffmpeg_player
        raise ClientException('ffmpeg/avconv was not found in your PATH environment variable') from e
    discord.errors.ClientException: ffmpeg/avconv was not found in your PATH environment variable

$ b $中找不到ffmpeg / avconv b

推荐答案

对我有用的解决方案涉及从源代码构建ffmpeg。

The solution which worked for me involved building ffmpeg from source.

cd /usr/src
sudo git clone https://github.com/FFmpeg/FFmpeg.git
cd FFmpeg
sudo ./configure --enable-openssl
sudo make 
sudo make install

以前的命令应该 >工作,只要准备好等待很长时间即可构建。

The previous commands should work, just be prepared to wait a long time for it to build.

https ://github.com/Just-Some-Bots/MusicBot/wiki/Guide-for-Raspbian#1d-ffmpeg

这篇关于Discord Bot Python ffmpeg错误的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆