Building with AI
Telegram bot
Overview
Key use cases:
When learning a new language it is sometimes easier to listen instead of reading.
This bot can be used to transform text into audio for this purpose.
Prompts
Code
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
import os
from telegram import Update
from telegram.ext import Application, CommandHandler, MessageHandler, ContextTypes, filters
from gtts import gTTS
import tempfile
# Replace 'YOUR_BOT_TOKEN' with the token you got from BotFather
TOKEN = 'yup-do-not-share-this'
async def start(update: Update, context: ContextTypes.DEFAULT_TYPE):
"""Send a message when the command /start is issued."""
welcome_message = (
"👋 Welcome to the Text-to-Speech Bot!\n\n"
"Simply send me any text message, and I'll convert it to audio for you.\n"
"You can also use /help to see available commands."
)
await update.message.reply_text(welcome_message)
async def help_command(update: Update, context: ContextTypes.DEFAULT_TYPE):
"""Send a message when the command /help is issued."""
help_message = (
"🔊 Text-to-Speech Bot Commands:\n\n"
"- Just send any text message to convert it to audio\n"
"- /start - Start the bot\n"
"- /help - Show this help message"
)
await update.message.reply_text(help_message)
async def text_to_speech(update: Update, context: ContextTypes.DEFAULT_TYPE):
"""Convert text message to speech and send audio."""
try:
# Send "processing" message
processing_message = await update.message.reply_text("🎵 Converting your text to speech...")
# Get the text from the message
text = update.message.text
# Create a temporary file
with tempfile.NamedTemporaryFile(delete=False, suffix='.mp3') as tmp_file:
# Convert text to speech
tts = gTTS(text=text, lang='en')
tts.save(tmp_file.name)
# Send the audio file
with open(tmp_file.name, 'rb') as audio:
await update.message.reply_voice(voice=audio)
# Delete the temporary file
os.unlink(tmp_file.name)
# Delete the processing message
await processing_message.delete()
except Exception as e:
error_message = f"Sorry, an error occurred: {str(e)}"
await update.message.reply_text(error_message)
def main():
"""Start the bot."""
# Create the Application
application = Application.builder().token(TOKEN).build()
# Add handlers
application.add_handler(CommandHandler("start", start))
application.add_handler(CommandHandler("help", help_command))
application.add_handler(MessageHandler(filters.TEXT & ~filters.COMMAND, text_to_speech))
# Start the bot
print("Bot is starting...")
application.run_polling()
if __name__ == '__main__':
main()
Output
This post is licensed under CC BY 4.0 by the author.