英文:
Sending a voice message from an OGG file using the InsanusMokrassar/TelegramBotAPI
问题
我正在使用InsanusMokrassar/TelegramBotAPI(又名@ktgbotapi)来制作一个向一群朋友发送随机消息的简单机器人。我想知道,我如何从我已经在我的包里有的.ogg文件开始发送语音消息。现在我正在尝试使用bot.sendVoice()
,但它需要一个我不知道如何创建的VoiceFile
。
英文:
I am using the InsanusMokrassar/TelegramBotAPI (AKA @ktgbotapi) to make a simple bot that sends random messages to a group of friends. I was wondering, how can I send a voice message starting from an .ogg file I already have that sound inside my package. Now I am trying to use bot.sendVoice()
but it asks for a VoiceFile
that I don't know how to create.
答案1
得分: 1
你可以使用 sendVoice,并从 MPPFile
(在JVM上通常是File
)创建的 InputFile,使用 asMultipartFile 扩展。
英文:
you may use sendVoice with InputFile created from MPPFile
(common File
on JVM) with asMultipartFile extension
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论