Forwarded from Telegram Brasil
This media is not supported in your browser
VIEW IN TELEGRAM
Forwarded from Telegram Brasil
This media is not supported in your browser
VIEW IN TELEGRAM
Verificação de Terceiros. O Telegram permite que figuras públicas e organizações sejam verificadas, para os usuários identificarem rapidamente fontes oficiais.
Serviços de terceiros agora podem atribuir ícones de verificação extras a contas de usuários, miniapps e chats públicos – o que ajudará a prevenir fraudes e reduzir a desinformação.
Atualização de janeiro
1 • 2 • 3 • 4 • Mais
Serviços de terceiros agora podem atribuir ícones de verificação extras a contas de usuários, miniapps e chats públicos – o que ajudará a prevenir fraudes e reduzir a desinformação.
Atualização de janeiro
1 • 2 • 3 • 4 • Mais
Forwarded from Telegram Brasil
Para conferir todos os recursos desta atualização, incluindo emojis personalizados em nomes de pastas, um leitor de código QR integrado e mais – acesse nosso blog:
https://telegram.org/blog/collectible-gifts-and-more/pt-br
Atualização de janeiro
1 • 2 • 3 • 4 • Mais
https://telegram.org/blog/collectible-gifts-and-more/pt-br
Atualização de janeiro
1 • 2 • 3 • 4 • Mais
Telegram
Collectible Gifts, Message Search Filters and More
Today we're releasing the first update of 2025, which includes collectible gifts that can be transferred or re-sent to other users, the ability to send reactions to in-chat events, filters for message search, an in-app QR code scanner and so much more.
💥 Join the Christmas Magic with Nicegram!
The season of giving is here, and Nicegram is spreading the holiday cheer with an exciting Christmas Giveaway on X!
🔔 Follow, Tag, Share – and let the joy begin!
20 Random winners will win 5 USDT each 💸
JOIN GIVEAWAY
Download Nicegram:
🛒 AppStore | 🛒 GooglePlay
Join Chat:
🇬🇧 EN Chat | 🇷🇺 RU Chat
Follow us:
✖️ X | 📹 YouTube
Website | Features | Navigation
The season of giving is here, and Nicegram is spreading the holiday cheer with an exciting Christmas Giveaway on X!
🔔 Follow, Tag, Share – and let the joy begin!
20 Random winners will win 5 USDT each 💸
JOIN GIVEAWAY
Download Nicegram:
🛒 AppStore | 🛒 GooglePlay
Join Chat:
🇬🇧 EN Chat | 🇷🇺 RU Chat
Follow us:
✖️ X | 📹 YouTube
Website | Features | Navigation
What features are missing from current Telegram bots?
Working on a Telegram bot focused on community/group management. Instead of building standard features, want to create something that solves real pain points.What automation/management features do you wish existed but can't find in current bots? Looking for honest feedback about:Message handlingMember managementAnalytics needsContent distributionCross-platform integrationShare your wishlist - trying to understand what would actually help bot developers and community managers.
Submitted January 03, 2025 at 05:51PM by fejkin
on r/TelegramBots via https://www.reddit.com/r/TelegramBots/comments/1hsqw57/what_features_are_missing_from_current_telegram/Backup by @tmebackupA @rtptme project - Other backups: http://pixly.link/tme
Working on a Telegram bot focused on community/group management. Instead of building standard features, want to create something that solves real pain points.What automation/management features do you wish existed but can't find in current bots? Looking for honest feedback about:Message handlingMember managementAnalytics needsContent distributionCross-platform integrationShare your wishlist - trying to understand what would actually help bot developers and community managers.
Submitted January 03, 2025 at 05:51PM by fejkin
on r/TelegramBots via https://www.reddit.com/r/TelegramBots/comments/1hsqw57/what_features_are_missing_from_current_telegram/Backup by @tmebackupA @rtptme project - Other backups: http://pixly.link/tme
769 terrorist bots and channels banned on January, 3.
Total this month: 2151
Report terrorist content using the in-app 'Report' button or to abuse@telegram.org.
Total this month: 2151
Report terrorist content using the in-app 'Report' button or to abuse@telegram.org.
2075 groups and channels related to child abuse banned on January, 3.
Total this month: 6057
Report child abuse using the in-app 'Report' button or to stopCA@telegram.org.
Total this month: 6057
Report child abuse using the in-app 'Report' button or to stopCA@telegram.org.
v1.1.54
1. [Remove] download speed boost
Remember clear media cache first if you've enabled download speed boost
Many problems have been discovered since the download speed boost was implemented.
First, the media player doesn't remember how long it has played.
Second, some users don't get any benefit when enabling it, e.g.: photo can't load, etc.
and now, media player crashes.
So I removed the bug😇
Download speed boost=bug itself
1. [Remove] download speed boost
Remember clear media cache first if you've enabled download speed boost
Many problems have been discovered since the download speed boost was implemented.
First, the media player doesn't remember how long it has played.
Second, some users don't get any benefit when enabling it, e.g.: photo can't load, etc.
and now, media player crashes.
So I removed the bug😇
Download speed boost=bug itself
Issues with sendMediaGroup
Hi All,I'm creating a bot but encountering some issues with the sendMediaGroup method.If I upload videos through the API with this method, the video length shows as 00:00 and the aspect ratio is also off.If I upload the video directly through the telegram desktop app, it works perfectly. Aspect ratio is fine, and time is correct.Here is my bash function which is handling the upload:upload_to_telegram() { local contact_sheet="$1" shift local files=("$@") local media_payload="" local counter=1 # Start counter at 1 since contact sheet is file0 media_payload+="{"type":"photo","media":"attach://file0"}," # Add each video and photo to the media payload for file in "${files[@]}"; do if [[ "$file" == *.jpg ]]; then media_payload+="{"type":"photo","media":"attach://file$counter"}," elif [[ "$file" == *.mp4 ]]; then media_payload+="{"type":"video","media":"attach://file$counter"}," fi counter=$((counter + 1)) done media_payload="[${media_payload%,}]" # Remove trailing comma # Prepare curl arguments for files curl_args=( -X POST "http://localhost:8081/bot$TELEGRAM_TOKEN/sendMediaGroup" -F "chat_id=$TELEGRAM_CHAT_ID" -F "message_thread_id=$TOPIC_ID" -F "media=$media_payload" ) # Attach contact sheet as the first file curl_args+=(-F "file0=@${contact_sheet}") # Attach other files local file_index=1 for file in "${files[@]}"; do curl_args+=(-F "file$file_index=@${file}") file_index=$((file_index + 1)) done # Execute the curl request curl "${curl_args[@]}"}Here is the details about the file I'm uploading:Input #0, mov,mp4,m4a,3gp,3g2,mj2, from '016.mp4': Metadata: major_brand : isom minor_version : 512 compatible_brands: isomiso2avc1mp41 encoder : Lavf58.12.100 Duration: 00:05:11.19, start: 0.000000, bitrate: 1698 kb/s Stream #0:0[0x1](eng): Video: h264 (Constrained Baseline) (avc1 / 0x31637661), yuv420p(progressive), 854x480 [SAR 1:1 DAR 427:240], 1564 kb/s, SAR 32880:32879 DAR 137:77, 30 fps, 30 tbr, 15360 tbn (default) Metadata: handler_name : VideoHandler vendor_id : [0][0][0][0] Stream #0:1[0x2](eng): Audio: aac (LC) (mp4a / 0x6134706D), 44100 Hz, stereo, fltp, 126 kb/s (default) Metadata: handler_name : SoundHandler vendor_id : [0][0][0][0]I know the simple solution is probably to re-encode the files - but I have a LOT of files so it's not a viable option for me.Hoping someone might have some ideas of how this issue could be resolved without re-encoding everything.
Submitted January 04, 2025 at 04:30PM by 0xCasperSec
on r/TelegramBots via https://www.reddit.com/r/TelegramBots/comments/1htgrgy/issues_with_sendmediagroup/Backup by @tmebackupA @rtptme project - Other backups: http://pixly.link/tme
Hi All,I'm creating a bot but encountering some issues with the sendMediaGroup method.If I upload videos through the API with this method, the video length shows as 00:00 and the aspect ratio is also off.If I upload the video directly through the telegram desktop app, it works perfectly. Aspect ratio is fine, and time is correct.Here is my bash function which is handling the upload:upload_to_telegram() { local contact_sheet="$1" shift local files=("$@") local media_payload="" local counter=1 # Start counter at 1 since contact sheet is file0 media_payload+="{"type":"photo","media":"attach://file0"}," # Add each video and photo to the media payload for file in "${files[@]}"; do if [[ "$file" == *.jpg ]]; then media_payload+="{"type":"photo","media":"attach://file$counter"}," elif [[ "$file" == *.mp4 ]]; then media_payload+="{"type":"video","media":"attach://file$counter"}," fi counter=$((counter + 1)) done media_payload="[${media_payload%,}]" # Remove trailing comma # Prepare curl arguments for files curl_args=( -X POST "http://localhost:8081/bot$TELEGRAM_TOKEN/sendMediaGroup" -F "chat_id=$TELEGRAM_CHAT_ID" -F "message_thread_id=$TOPIC_ID" -F "media=$media_payload" ) # Attach contact sheet as the first file curl_args+=(-F "file0=@${contact_sheet}") # Attach other files local file_index=1 for file in "${files[@]}"; do curl_args+=(-F "file$file_index=@${file}") file_index=$((file_index + 1)) done # Execute the curl request curl "${curl_args[@]}"}Here is the details about the file I'm uploading:Input #0, mov,mp4,m4a,3gp,3g2,mj2, from '016.mp4': Metadata: major_brand : isom minor_version : 512 compatible_brands: isomiso2avc1mp41 encoder : Lavf58.12.100 Duration: 00:05:11.19, start: 0.000000, bitrate: 1698 kb/s Stream #0:0[0x1](eng): Video: h264 (Constrained Baseline) (avc1 / 0x31637661), yuv420p(progressive), 854x480 [SAR 1:1 DAR 427:240], 1564 kb/s, SAR 32880:32879 DAR 137:77, 30 fps, 30 tbr, 15360 tbn (default) Metadata: handler_name : VideoHandler vendor_id : [0][0][0][0] Stream #0:1[0x2](eng): Audio: aac (LC) (mp4a / 0x6134706D), 44100 Hz, stereo, fltp, 126 kb/s (default) Metadata: handler_name : SoundHandler vendor_id : [0][0][0][0]I know the simple solution is probably to re-encode the files - but I have a LOT of files so it's not a viable option for me.Hoping someone might have some ideas of how this issue could be resolved without re-encoding everything.
Submitted January 04, 2025 at 04:30PM by 0xCasperSec
on r/TelegramBots via https://www.reddit.com/r/TelegramBots/comments/1htgrgy/issues_with_sendmediagroup/Backup by @tmebackupA @rtptme project - Other backups: http://pixly.link/tme
Telegram channel finder
Hello good, I was looking if it is possible to find a bot that makes it easier for you to search for channels
Submitted January 04, 2025 at 07:41PM by clocker99
on r/TelegramBots via https://www.reddit.com/r/TelegramBots/comments/1htl36l/telegram_channel_finder/Backup by @tmebackupA @rtptme project - Other backups: http://pixly.link/tme
Hello good, I was looking if it is possible to find a bot that makes it easier for you to search for channels
Submitted January 04, 2025 at 07:41PM by clocker99
on r/TelegramBots via https://www.reddit.com/r/TelegramBots/comments/1htl36l/telegram_channel_finder/Backup by @tmebackupA @rtptme project - Other backups: http://pixly.link/tme
Sofia Martinez: School teacher bot @i_am_sofia_bot
https://v.redd.it/wwav75txp1be1
Submitted January 04, 2025 at 10:34PM by aipaintr
on r/TelegramBots via https://www.reddit.com/r/TelegramBots/comments/1htp28e/sofia_martinez_school_teacher_bot_i_am_sofia_bot/Backup by @tmebackupA @rtptme project - Other backups: http://pixly.link/tme
https://v.redd.it/wwav75txp1be1
Submitted January 04, 2025 at 10:34PM by aipaintr
on r/TelegramBots via https://www.reddit.com/r/TelegramBots/comments/1htp28e/sofia_martinez_school_teacher_bot_i_am_sofia_bot/Backup by @tmebackupA @rtptme project - Other backups: http://pixly.link/tme
Reddit
From the TelegramBots community on Reddit: Sofia Martinez: School teacher bot @i_am_sofia_bot
Explore this post and more from the TelegramBots community
2419 groups and channels related to child abuse banned on January, 4.
Total this month: 8476
Report child abuse using the in-app 'Report' button or to stopCA@telegram.org.
Total this month: 8476
Report child abuse using the in-app 'Report' button or to stopCA@telegram.org.
504 terrorist bots and channels banned on January, 4.
Total this month: 2655
Report terrorist content using the in-app 'Report' button or to abuse@telegram.org.
Total this month: 2655
Report terrorist content using the in-app 'Report' button or to abuse@telegram.org.
⭐️ Looks like these bots have few ratings!
Try them and share your opinion, vote!
Try them and share your opinion, vote!
What are your favorite Telegram Bots that you use regularly?
Questions is in the title :)
Submitted January 05, 2025 at 05:41PM by N1njaWTF
on r/TelegramBots via https://www.reddit.com/r/TelegramBots/comments/1hub2e1/what_are_your_favorite_telegram_bots_that_you_use/Backup by @tmebackupA @rtptme project - Other backups: http://pixly.link/tme
Questions is in the title :)
Submitted January 05, 2025 at 05:41PM by N1njaWTF
on r/TelegramBots via https://www.reddit.com/r/TelegramBots/comments/1hub2e1/what_are_your_favorite_telegram_bots_that_you_use/Backup by @tmebackupA @rtptme project - Other backups: http://pixly.link/tme
Lag/delay
https://v.redd.it/7m5irom9h9be1
Submitted January 06, 2025 at 12:39AM by hahohihii
on r/TelegramBots via https://www.reddit.com/r/TelegramBots/comments/1hukx6e/lagdelay/Backup by @tmebackupA @rtptme project - Other backups: http://pixly.link/tme
https://v.redd.it/7m5irom9h9be1
Submitted January 06, 2025 at 12:39AM by hahohihii
on r/TelegramBots via https://www.reddit.com/r/TelegramBots/comments/1hukx6e/lagdelay/Backup by @tmebackupA @rtptme project - Other backups: http://pixly.link/tme
Reddit
From the TelegramBots community on Reddit: Lag/delay
Explore this post and more from the TelegramBots community