gpt4 book ai didi

python - 在 python 中使用 ffmpeg 将音频文件转换为 mp3

转载 作者:行者123 更新时间:2023-12-04 23:31:24 25 4
gpt4 key购买 nike

我正在为 Dyscord 从事 BOT 行业,我需要在动态知识中播放语音片段我有一台 32 位计算机

import discord
from discord.ext import commands
import os
client = commands.Bot(command_prefix="!")
@client.command()
async def play(ctx, url : str):
print('We have logged in as {0.user}'.format(client))
voiceChannel = discord.utils.get(ctx.guild.voice_channels, name="Lounge")
await voiceChannel.connect()
voice = discord.utils.get(client.voice_clients, guild=ctx.guild)

voice.play(discord.FFmpegPCMAudio("song.mp3"))

@client.command()
async def ext(ctx):
voice = discord.utils.get(client.voice_clients, guild=ctx.guild)
await voice.disconnect()

client.run('token')


最佳答案

嘿嘿!我建议查看这个 GitHub 存储库:https://github.com/pariweshsubedi/python-ffmpeg-audio-converter
这将有助于使事情变得更容易。

关于python - 在 python 中使用 ffmpeg 将音频文件转换为 mp3,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/70160755/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com