简介
在telegram的中有很多高质量的付费频道,但无独有偶的是基本上这些频道都禁止下载、转发。那有没有办法能够突破这一限制呢?
需求
最近加入了一个很nice的telegram频道,质量很高,我很满意。但当我想保存消息附件文件时却保存不了。
本人也是10几年的码农,想着自己写个小工具。实现功能如下:
1、多线程下载附件
2、支持image、video、audio以及telegram支持的所有document
3、附件如果是视频,则连缩略图一起下载
2、支持image、video、audio以及telegram支持的所有document
3、附件如果是视频,则连缩略图一起下载
在网上找了很久的代码,想着这个功能应该很简单,毕竟telegram是一款世界级的聊天工具。
但逛完一圈下来,很多代码都是东拼西凑,根本就不能满足我的要求。
所有,才有这篇博文的产生。有需要的小伙伴拿去就能用,但需要有一定的代码知识。
不懂代码者,勿拍!
代码
''' 功能:下载指定频道消息的附件(image、video、document等) 参数:section:本地父文件夹名称 msg_id:本地子文件夹名称 files:需要下载的消息列表 ''' async def download_small_file_for_list(self, section, from_channel_id, msg_id, files): async def download_thumbnail(message:Message, filename): await self.client.download_media(message, thumb=-1, file=filename) async def download(message:Message, filename): await self.client.download_media(message=message, file=filename) folder = Utils.get_download_path(section, msg_id) tasks=[] loop = asyncio.get_event_loop() for file in files: if (Utils.is_downloaded_media_file(filename, section, msg_id)): continue logger.info("download from [{}]-[{}]-[{}] -> [{}] small file", section, from_channel_id, file.id, filename) tasks.append(loop.create_task(download(message=file, filename=os.path.join(folder,filename)))) if Utils.is_video(file.file.mime_type): if not (file.file.media.thumbs is None): tasks.append(loop.create_task(download_thumbnail(message=file, filename=os.path.join(folder,Utils.get_file_thumb_name(filename))))) if (len(tasks) > 0): try: await asyncio.gather(*tasks) except Exception as e: raise e
声明:本站所有文章,如无特殊说明或标注,均为本站原创发布。任何个人或组织,在未征得本站同意时,禁止复制、盗用、采集、发布本站内容到任何网站、书籍等各类媒体平台。如若本站内容侵犯了原著者的合法权益,可联系我们进行处理。
评论(0)