Telegram News / Beta / Unofficial Desktop Versions / Web / TG Bots / Subreddit / DMG by RTP [MacOS]
247 subscribers
1.78K photos
2.77K videos
1.14K files
20.1K links
Telegram Channel by @roadtopetabyte http://pixly.me/rtp - Announcements: @rtptme
Download Telegram
Forwarded from Noticias de Telegram
This media is not supported in your browser
VIEW IN TELEGRAM
Regalos coleccionables. Ahora es posible mejorar a coleccionables más de 20 regalos existentes y pronto habrá más.

Cuando mejoras un regalo, desbloqueas una nueva apariencia entre decenas de variaciones personalizadas creadas por artistas de Telegram, así como rasgos secundarios aleatorios.

Los regalos coleccionables se pueden transferir a otros usuarios o subastar en mercados de NFT.

Actualización de enero
1 • 23 • 4Más
Forwarded from Noticias de Telegram
This media is not supported in your browser
VIEW IN TELEGRAM
Reacciones a mensajes de servicio. Cuando alguien te envía un regalo o se une a un grupo, aparece un mensaje de servicio especial en la conversación.

Estos mensajes ahora admiten reacciones, por lo que puedes agradecer o dar la bienvenida a nuevos miembros con dos toques.

Actualización de enero
1
• 23 • 4Más
Forwarded from Noticias de Telegram
This media is not supported in your browser
VIEW IN TELEGRAM
Filtros de búsqueda de mensajes. Los resultados de búsqueda en la pestaña “Chats” ahora tienen filtros adicionales que te permiten refinar la lista para mostrar elementos sólo de chats privados, chats grupales o canales.

Actualización de enero
1
• 23 • 4Más
Forwarded from Noticias de Telegram
This media is not supported in your browser
VIEW IN TELEGRAM
Verificación de terceros. Telegram permite que las figuras y organizaciones públicas se verifiquen, de modo que los usuarios puedan identificar rápidamente las fuentes oficiales.

Los servicios de terceros ahora pueden asignar íconos de verificación adicionales a las cuentas de usuario, mini apps y chats públicos, lo que ayudará a prevenir estafas y reducir la desinformación.

Actualización de enero
1
• 23 • 4Más
Forwarded from Telegram Brasil
This media is not supported in your browser
VIEW IN TELEGRAM
Presentes Colecionáveis. Mais de 20 presentes existentes no Telegram agora podem ser atualizados para colecionáveis – e teremos mais em breve.

Ao atualizar um presente, você desbloqueia uma nova aparência entre dezenas de variações personalizadas criadas por artistas do Telegram, além de características secundárias aleatórias.

Presentes colecionáveis podem ser transferidos para outros usuários ou leiloados em marketplaces de NFTs.

Atualização de janeiro
1 • 2 • 3 • 4 • Mais
Forwarded from Telegram Brasil
This media is not supported in your browser
VIEW IN TELEGRAM
Reações para Mensagens de Serviço. Quando alguém lhe envia um presente ou entra em um grupo, uma mensagem de serviço especial aparece na conversa.

Agora, essas mensagens aceitam reações – permitindo que você agradeça ou dê as boas-vindas a novos membros com apenas dois toques.

Atualização de janeiro
1 • 2 • 3 • 4 • Mais
Forwarded from Telegram Brasil
This media is not supported in your browser
VIEW IN TELEGRAM
Filtros de Busca de Mensagens. Os resultados de busca na aba 'Chats' agora possuem filtros extras que permitem refinar a lista para exibir apenas itens de chats privados, grupos ou canais.

Atualização de janeiro
1 • 2 • 3 • 4 • Mais
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
💥 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
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
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.
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.
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
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