[解決済み] discord.pyでKDBotのようなTTSボットを作るにはどうしたらいいですか?
2022-03-03 01:40:30
質問
初めてコマンドを使用したとき、ボットはボイスチャンネルに入り、完璧に動作しますが、再度コマンドを使用すると動作しなくなります。コマンドを使うたびにボットを切断してみましたが、うまくいきません。ボットがすでにチャンネルに接続している場合は、kdbotのように音声を再生させる必要があります。誰か助けてくれませんか?
@bot.command()
async def tts(ctx,*, text:str):
global gTTS
language = "es-us"
user = ctx.author
speech = gTTS(text=text,lang=language,slow=False)
speech.save("audio.mp3")
channel = user.voice.channel
try:
vc = await channel.connect()
except:
print("Already connected")
#vc = discord.VoiceClient(bot,channel)
#await vc.connect(reconnect=True,timeout=4)
vc.play(discord.FFmpegPCMAudio('audio.mp3'), after=None)
counter = 0
cwd = os.getcwd()
duration = audio_len(cwd + "/audio.mp3")
while not counter >= duration:
await asyncio.sleep(1)
counter += 1
#await vc.disconnect()
解決方法は?
ボットが
VoiceChannel
は、すでに
VoiceClient
を取得することができます。
from discord.utils import get
[...]
voice = get(self.bot.voice_clients, guild=ctx.guild)
使い方はこうだ。
@bot.command()
async def tts(ctx,*, text:str):
global gTTS
speech = gTTS(text=text, lang="es-us", slow=False)
speech.save("audio.mp3")
voice = get(self.bot.voice_clients, guild=ctx.guild)
if not voice:
voice = await ctx.author.voice.channel.connect()
voice.play(discord.FFmpegPCMAudio('audio.mp3'), after=None)
counter = 0
cwd = os.getcwd()
duration = audio_len(cwd + "/audio.mp3")
while not counter >= duration:
await asyncio.sleep(1)
counter += 1
関連
-
[解決済み】numpyの配列連結。"ValueError:すべての入力配列は同じ次元数でなければならない"
-
[解決済み】socket.error: [Errno 48] アドレスはすでに使用中です。
-
[解決済み] 関数デコレータを作成し、それらを連鎖させるには?
-
[解決済み] リストのリストからフラットなリストを作るには?
-
[解決済み] Pythonで辞書に新しいキーを追加するにはどうすればよいですか?
-
[解決済み] 割り当て後にリストが予期せず変更されました。その理由と防止策を教えてください。
-
[解決済み] Windowsにpipをインストールするにはどうしたらいいですか?
-
[解決済み] pipでPythonの全パッケージをアップグレードする方法
-
[解決済み] Pythonの辞書からキーを削除するにはどうしたらいいですか?
-
[解決済み】ネストされたディレクトリを安全に作成するには?
最新
-
nginxです。[emerg] 0.0.0.0:80 への bind() に失敗しました (98: アドレスは既に使用中です)
-
htmlページでギリシャ文字を使うには
-
ピュアhtml+cssでの要素読み込み効果
-
純粋なhtml + cssで五輪を実現するサンプルコード
-
ナビゲーションバー・ドロップダウンメニューのHTML+CSSサンプルコード
-
タイピング効果を実現するピュアhtml+css
-
htmlの選択ボックスのプレースホルダー作成に関する質問
-
html css3 伸縮しない 画像表示効果
-
トップナビゲーションバーメニュー作成用HTML+CSS
-
html+css 実装 サイバーパンク風ボタン
おすすめ
-
ピローによる動的キャプチャ認識のためのPythonサンプルコード
-
Python関数の高度な応用を解説
-
[解決済み】TypeError: unhashable type: 'numpy.ndarray'.
-
[解決済み】なぜ「LinAlgError: Grangercausalitytestsから「Singular matrix」と表示されるのはなぜですか?
-
[解決済み】pygame.error: ビデオシステムが初期化されていない
-
[解決済み】Pythonでgoogle APIのJSONコードを読み込むとエラーになる件
-
[解決済み】 AttributeError("'str' object has no attribute 'read'")
-
[解決済み】IndexError: invalid index to scalar variableを修正する方法
-
[解決済み】NameError: 名前 'self' が定義されていません。
-
[解決済み】django インポートエラー - core.managementという名前のモジュールがない