ffmpegをインストールしたい
最終目標
ffmpegをインストールしpathを通しdiscord.pyを使い曲を流す
躓いているところ
ubuntuにffmpegをインストールしpathを通すところ。
ここのページを参考にしましたがうまく動きませんでした。
ffmpegはしっかりと入っているみたいです
パッケージリストを読み込んでいます... 完了
依存関係ツリーを作成しています
状態情報を読み取っています... 完了
ffmpeg はすでに最新バージョン (7:4.2.4-1ubuntu0.1) です。
アップグレード: 0 個、新規インストール: 0 個、削除: 0 個、保留: 0 個。
発生している問題・エラーメッセージ
Traceback (most recent call last): File "/home/sibainu/.local/lib/python3.9/site-packages/discord/client.py", line 352, in _run_event await coro(*args, kwargs) File "/home/sibainu/discord/discordongaku-main/musicbot.py", line 36, in on_message source = await discord.FFmpegOpusAudio.from_probe(video_url) File "/home/sibainu/.local/lib/python3.9/site-packages/discord/player.py", line 452, in from_probe return cls(source, bitrate=bitrate, codec=codec, kwargs) # type: ignore File "/home/sibainu/.local/lib/python3.9/site-packages/discord/player.py", line 384, in init super().init(source, executable=executable, args=args, subprocess_kwargs) File "/home/sibainu/.local/lib/python3.9/site-packages/discord/player.py", line 153, in init self._process: subprocess.Popen = self._spawn_process(args, kwargs) File "/home/sibainu/.local/lib/python3.9/site-packages/discord/player.py", line 167, in _spawn_process process = subprocess.Popen(args, creationflags=CREATE_NO_WINDOW, **subprocess_kwargs) File "/usr/lib/python3.9/subprocess.py", line 951, in init self._execute_child(args, executable, preexec_fn, close_fds, File "/usr/lib/python3.9/subprocess.py", line 1754, in _execute_child self.pid = _posixsubprocess.fork_exec( TypeError: expected str, bytes or os.PathLike object, not NoneType Exception ignored in: <function AudioSource.del at 0x7fdb3278f790> Traceback (most recent call last): File "/home/sibainu/.local/lib/python3.9/site-packages/discord/player.py", line 116, in del self.cleanup() File "/home/sibainu/.local/lib/python3.9/site-packages/discord/player.py", line 212, in cleanup self._kill_process() File "/home/sibainu/.local/lib/python3.9/site-packages/discord/player.py", line 177, in _kill_process proc = self._process AttributeError: 'FFmpegOpusAudio' object has no attribute '_process'
該当のソースコード
from youtube_dl import YoutubeDL from discord import client import discord client = discord.Client() @client.event async def on_message(message: discord.Message): # メッセージの送信者がbotだった場合は無視する if message.author.bot: return if message.content == "!join": if message.author.voice is None: await message.channel.send("あなたはボイスチャンネルに接続していません。") return # ボイスチャンネルに接続する await message.author.voice.channel.connect() await message.channel.send("接続しました。") elif message.content == "!leave": if message.guild.voice_client is None: await message.channel.send("接続していません。") return # 切断する await message.guild.voice_client.disconnect() await message.channel.send("切断しました。") elif message.content.startswith("!play "): video = message.content[6:] ydl = YoutubeDL({"outtmpl":"lk%(id)s%(ext)s","format":"bestaudio/best"}) with ydl: info_dict = ydl.extract_info(video,download=False) video_url = info_dict.get("url") video_title = info_dict.get("title") source = await discord.FFmpegOpusAudio.from_probe(video_url) await message.channel.send(f'{video_title}を再生します。') message.guild.voice_client.play(source) elif message.content == "!stop": if message.guild.voice_client is None: await message.channel.send("接続していません。") return # 再生中ではない場合は実行しない if not message.guild.voice_client.is_playing(): await message.channel.send("再生していません。") return message.guild.voice_client.stop() await message.channel.send("ストップしました。") client.run("Tokun")
試したこと
ここのページの解説
補足情報(FW/ツールのバージョンなど)
ubuntu20.04
python3.9
あなたの回答
tips
プレビュー