Audio & voice
Xondamir Abduxoshimov
private async void Xabar_Kelganda(object sender, MessageEventArgs e)
{
if(e.Message.Text == "audio yubor")
{
Message msg = await client.SendAudioAsync(
chatId: e.Message.Chat.Id,
audio: "https://w1.musify.club/track/dl/942785/sting-shape-of-my-heart-from-the-professional-leon-and-three-of-hearts.mp3",
/*caption: "Video fayl",
title: "Shape of my heart", // sarlavhasi
duration: 20, // davomiyligi sekundlarda
performer: "Sting", // author
*/
replyToMessageId: e.Message.MessageId,
disableNotification: true
);
await client.SendAudioAsync(
chatId: e.Message.Chat.Id,
msg.Audio.FileId
);
}
}

Last updated
Was this helpful?