Link Search Menu Expand Document

Method: messages.transcribeAudio

Back to methods index

Transcribe voice message

Parameters:

NameTypeDescriptionRequired
peerUsername, chat ID, Update, Message or InputPeerPeer ID where the voice message was sentOptional
msg_idintVoice message IDOptional

Return type: messages.TranscribedAudio

Can bots use this method: NO

MadelineProto Example (now async for huge speed and parallelism!):

if (!file_exists('madeline.php')) {
    copy('https://phar.madelineproto.xyz/madeline.php', 'madeline.php');
}
include 'madeline.php';

$MadelineProto = new \danog\MadelineProto\API('session.madeline');
$MadelineProto->start();

$messages_TranscribedAudio = $MadelineProto->messages->transcribeAudio(peer: $InputPeer, msg_id: $int, );