From d54197d756fb2036833c1d50c63a9be81a66c79b Mon Sep 17 00:00:00 2001 From: Syfaro Date: Mon, 10 Aug 2015 16:02:29 -0500 Subject: [PATCH] mention encodeaudio function on sendaudio function --- methods.go | 1 + 1 file changed, 1 insertion(+) diff --git a/methods.go b/methods.go index c345a96..52bfb39 100644 --- a/methods.go +++ b/methods.go @@ -375,6 +375,7 @@ func (bot *BotAPI) SendPhoto(config PhotoConfig) (Message, error) { // SendAudio sends or uploads an audio clip to a chat. // If using a file, the file must be encoded as an .ogg with OPUS. +// You may use the tgutils.EncodeAudio func to assist you with this, if needed. // // Requires ChatID and FileID OR FilePath. // ReplyToMessageID and ReplyMarkup are optional.