9194
Share your bots, comment, test and have fun! Rules: Speak in English, Don't spam/advertise channels or groups that aren't bot related, respect other members, use common sense. @BOTLIST 🌟 @BotListBot 🤖 @BotListCollections 📔
Thanks, happy for not getting muted
here you go @PinkRose1995
why my message got deleted I took 10 min writing it 😂
Читать полностью…
Is there any bot where I can merge two audio file
Читать полностью…
You know what you mean. Make sure your words say it. ✍️
That message you keep rewriting. The post still sitting in your drafts. The email that sounds colder than you intended.
@CopyZenBot helps you find the words that feel right.
Paste your text, choose a tone, and get a fresh version — right inside Telegram.
💼 Sound confident in a work email.
💬 Make a personal message feel warmer.
🔥 Give your next post more personality.
✂️ Say what matters in fewer words.
Keep it close to your original or try a bolder rewrite. You choose how much changes.
🎁 Start with 10 free rewrites. Then enjoy 1 free rewrite every day.
Got a draft you’re hesitating to send? Start there.
👉 Try CopyZenBot
How to create a Telegram bot? Any tutorials available?
Читать полностью…
Or use a third-party bot
@RichCustomizebot 👀
After learning how to do Python what could you do with it???
Читать полностью…
he has got some empty space on the right side of the table
Читать полностью…
Hi. Any bot for download of hardtunes.com free❔
Читать полностью…
Thank you sir 🙏
Sir I have hundreds of large videos , so doing it manually for every video would take a lot of time and storage. That’s why I’m looking for a bot that can automatically add the watermark only to the first 15 seconds without processing the entire video.
Hello, I created a bot for customizing and creating rich messages @RichCustomizebot
Читать полностью…
There are two ways:
1. The honest way: Create your own pet projects, look for free internships, manage social media, apply for job openings, and manage LinkedIn
2. The only way that works: Fake experience, come up with a cover story, and lie on your resume. Then, use Ghost GPT during technical interviews to receive offers en masse
You can get a job at an IT company and earn good money, while also developing your own business.
Читать полностью…
@Language_Blockbot
Detects unwanted languages automatically. It recognizes Chinese 🇨🇳, Russian 🇷🇺, Arabic 🇸🇦, and Latin characters using statistical language detection (not crude keyword lists), so it's accurate even on mixed messages.
You can set it to: delete, kick, mute, ban, ban&delete
BOT_TOKEN="token"
CHAT_ID="your tg id"
API="http://127.0.0.1:8081"
mkdir -p watermarked
for f in *.{mp4,mov,mkv,webm}; do
[ -f "$f" ] || continue
output="watermarked/$f"
ffmpeg -i "$f" -i watermark.png \
-filter_complex "[1:v]scale=200:-1[wm];[0:v][wm]overlay=W-w-10:H-h-10:enable='lte(t,15)'" \
-c:v libx264 -preset fast -crf 18 -c:a copy "$output"
if [ $? -eq 0 ]; then
echo "done: $output"
curl -s -X POST \
"$API/bot$BOT_TOKEN/sendVideo" \
-F "chat_id=$CHAT_ID" \
-F "video=file://$(realpath "$output")"
echo
echo "uploaded: $output"
else
echo "failed FFmpeg: $f"
fi
done
mkdir -p watermarkedЧитать полностью…
for f in *.{mp4,mov,mkv,webm}; do
[ -f "$f" ] || continue
ffmpeg -i "$f" -i watermark.png -filter_complex "[1:v]scale=200:-1[wm];[0:v][wm]overlay=W-w-10:H-h-10:enable='lte(t,15)'" -c:v libx264 -preset fast -crf 18 -c:a copy "watermarked/$f"
done
ffmpeg -i input.mp4 -i watermark.png -filter_complex "[1:v]scale=200:-1[wm];[0:v][wm]overlay=W-w-10:H-h-10:enable='lte(t,15)'" -c:v libx264 -preset fast -crf 18 -c:a copy output.mp4