1
0
Fork 0
mirror of https://github.com/ytdl-org/youtube-dl.git synced 2024-06-01 18:09:28 +00:00

Compare commits

...

3 commits

Author SHA1 Message Date
fluks f0beef9dd0
Merge 360104ec18 into a08f2b7e45 2024-05-16 14:28:54 +03:00
dirkf a08f2b7e45
[workflows/ci.yml] Temporary workaround for Python 3.5 _pip_ failures
https://github.com/actions/setup-python/issues/866
2024-05-15 16:57:59 +01:00
fluks 360104ec18
[Telegram] Add new extractor
Add very rudimentary extractor for Telegram. Supports only public and
channels which are previawable with browser.

Implements #28748.
2022-11-07 16:33:59 +02:00
4 changed files with 65 additions and 0 deletions

View file

@ -159,6 +159,9 @@ jobs:
# wrap broken actions/setup-python@v4
# NB may run apt-get install in Linux
uses: ytdl-org/setup-python@v1
env:
# Temporary workaround for Python 3.5 failures - May 2024
PIP_TRUSTED_HOST: "pypi.python.org pypi.org files.pythonhosted.org"
with:
python-version: ${{ matrix.python-version }}
cache-build: true

View file

@ -934,6 +934,7 @@
- **TeleBruxelles**
- **Telecinco**: telecinco.es, cuatro.com and mediaset.es
- **Telegraaf**
- **Telegram**
- **TeleMB**
- **TeleQuebec**
- **TeleQuebecEmission**

View file

@ -1271,6 +1271,7 @@ from .tele13 import Tele13IE
from .telebruxelles import TeleBruxellesIE
from .telecinco import TelecincoIE
from .telegraaf import TelegraafIE
from .telegram import TelegramIE
from .telemb import TeleMBIE
from .telequebec import (
TeleQuebecIE,

View file

@ -0,0 +1,60 @@
# coding: utf-8
from __future__ import unicode_literals
import re
from .common import InfoExtractor
from ..utils import (
ExtractorError,
int_or_none,
)
class TelegramIE(InfoExtractor):
_VALID_URL = r'https://t\.me/(?P<user>[^/]+)/(?P<id>\d+)'
_TEST = {
'url': 'https://t.me/telegram/195',
'info_dict': {
'id': '195',
'ext': 'mp4',
'title': 'telegram',
'description': 'Telegrams Bot Documentation has been completely overhauled \xa0adding the latest info, along with detailed screenshots and videos.\n\nNewcomers now have an easy way to learn about all the powerful features, and can build a bot from our step-by-step tutorial with examples for popular programming languages.\n\nExperienced developers can explore recent updates and advanced features, ready for 2022 and beyond.',
'duration': 23,
},
}
def _real_extract(self, url):
video_id = self._match_id(url)
m = re.match(r'https://t\.me/(?P<channel>[^/]+)/', url)
if m is None:
raise ExtractorError('Unable to find channel name')
title = m.group('channel')
embed_url = url + '?embed=1&mode=tme'
html = self._download_webpage(embed_url, video_id)
video_url = self._search_regex(r'<video src="([^"]+)"', html, 'video_url')
formats = [{'url': video_url}]
duration = self._search_regex(
r'<time class="message_video_duration.*?>(\d+:\d+)<', html,
'duration', fatal=False)
if duration:
try:
mins, secs = duration.split(':')
secs = int_or_none(secs)
mins = int_or_none(mins)
duration = None if secs is None or mins is None else secs + 60 * mins
except ValueError:
duration = None
description = self._html_search_regex(
r'<div class="tgme_widget_message_text.*?>(.+?)</div>', html,
'description', fatal=False)
return {
'id': video_id,
'title': title,
'description': description,
'duration': duration,
'formats': formats
}