Compare commits

...

23 Commits

Author SHA1 Message Date
Ehtisham Sabir
9bb36217c5
Merge dce1e146109d60949e5660ea134fcec95441438e into 4e714f9df1ed2cccd51df60d45ff5504abe827b7 2025-03-28 01:56:29 +00:00
dirkf
4e714f9df1 [Misc] Correct [_]IE_DESC/NAME in a few IEs
* thx seproDev, yt-dlp/yt-dlp/pull/12694/commits/ae69e3c
* also add documenting comment in `InfoExtractor`
2025-03-26 12:47:19 +00:00
dirkf
c1ea7f5a24 [ITV] Mark ITVX not working
* update old shim
* correct [_]IE_DESC
2025-03-26 12:17:49 +00:00
Ehtisham Sabir
dce1e14610 fixed issues. 2022-07-09 15:07:13 +05:00
Ehtisham Sabir
5df576b5a1 fixed issues. 2022-05-18 18:42:06 +05:00
Ehtisham Sabir
4a43765c84 fixed issues. 2022-05-18 18:32:00 +05:00
Ehtisham Sabir
65274df94b
Update youtube_dl/extractor/wikimedia.py
Co-authored-by: dirkf <fieldhouse@gmx.net>
2022-05-18 18:30:33 +05:00
Ehtisham Sabir
54eec8c0b9
Merge branch 'ytdl-org:master' into master 2022-05-05 07:23:46 +05:00
Ehtisham Sabir
67c58034ef fixed issues. 2022-05-05 07:05:38 +05:00
Ehtisham Sabir
b3d2887ed8 fixed issues. 2022-04-14 17:11:14 +05:00
Ehtisham Sabir
961a3f3d8b fixed added support for multiple video format. 2022-04-05 05:30:07 +05:00
Ehtisham Sabir
a10f613d62 fixed Test part for the wikimedia extractor
python test/test_download.py TestDownload.test_Wikimedia

[wikimedia.org] Die_Temperaturkurve_der_Erde_(ZDF,_Terra_X)_720p_HD_50FPS.webm: Downloading webpage
[wikimedia.org] Die_Temperaturkurve_der_Erde_(ZDF,_Terra_X)_720p_HD_50FPS.webm: Extracting information
[info] Writing video description metadata as JSON to: test_Wikimedia_Die_Temperaturkurve_der_Erde_(ZDF,_Terra_X)_720p_HD_50FPS.info.json
[debug] Invoking downloader on 'https://upload.wikimedia.org/wikipedia/commons/transcoded/d/d7/Die_Temperaturkurve_der_Erde_%28ZDF%2C_Terra_X%29_720p_HD_50FPS.webm/Die_Temperaturkurve_der_Erde_%28ZDF%2C_Terra_X%29_720p_HD_50FPS.webm.480p.vp9.webm'
[download] Destination: test_Wikimedia_Die_Temperaturkurve_der_Erde_(ZDF,_Terra_X)_720p_HD_50FPS.webm
[download] 100% of 10.00KiB in 00:00
.
----------------------------------------------------------------------
Ran 1 test in 2.262s

OK
2022-04-04 17:47:05 +05:00
Ehtisham Sabir
8f48f187f8 subtitles extraction for all language fixed bad request 2022-04-03 01:31:15 +05:00
Ehtisham Sabir
4efde78200
Merge branch 'ytdl-org:master' into master 2022-04-02 14:35:45 +05:00
Ehtisham Sabir
6dfb8d4ec6 subtitles extraction for all language fixed. 2022-04-02 14:31:52 +05:00
Ehtisham Sabir
aeb5abe2b9 video name fixed. 2022-04-02 01:02:09 +05:00
Ehtisham Sabir
42b0ca233d cleaned html tags inside description. 2022-04-01 05:30:38 +05:00
Ehtisham Sabir
810c1a56a0 made changes according to request also I really appreciate help by @dirkf 2022-04-01 05:25:00 +05:00
Ehtisham Sabir
bf428499a0 made changes according to request also I really appreciate help by @dirkf 2022-04-01 05:21:57 +05:00
Ehtisham Sabir
7bf92fd726 adding https://commons.wikimedia.org to youtube-dl with
url
author
description
extension
id
title
license
2022-04-01 03:09:52 +05:00
Ehtisham Sabir
e0dcf1db42 adding https://commons.wikimedia.org to youtube-dl 2022-03-31 15:21:38 +05:00
Ehtisham Sabir
ecc770b99e adding https://commons.wikimedia.org to youtube-dl 2022-03-31 15:19:00 +05:00
Ehtisham Sabir
aded139c4f adding https://commons.wikimedia.org to youtube-dl 2022-03-31 03:56:02 +05:00
7 changed files with 80 additions and 15 deletions

View File

@ -32,7 +32,7 @@ class BokeCCBaseIE(InfoExtractor):
class BokeCCIE(BokeCCBaseIE):
_IE_DESC = 'CC视频'
IE_DESC = 'CC视频'
_VALID_URL = r'https?://union\.bokecc\.com/playvideo\.bo\?(?P<query>.*)'
_TESTS = [{

View File

@ -9,7 +9,7 @@ from ..utils import (
class CloudyIE(InfoExtractor):
_IE_DESC = 'cloudy.ec'
IE_DESC = 'cloudy.ec'
_VALID_URL = r'https?://(?:www\.)?cloudy\.ec/(?:v/|embed\.php\?.*?\bid=)(?P<id>[A-Za-z0-9]+)'
_TESTS = [{
'url': 'https://www.cloudy.ec/v/af511e2527aac',

View File

@ -422,6 +422,8 @@ class InfoExtractor(object):
_GEO_COUNTRIES = None
_GEO_IP_BLOCKS = None
_WORKING = True
# supply this in public subclasses: used in supported sites list, etc
# IE_DESC = 'short description of IE'
def __init__(self, downloader=None):
"""Constructor. Receives an optional downloader."""

View File

@ -1701,3 +1701,4 @@ from .zingmp3 import (
)
from .zoom import ZoomIE
from .zype import ZypeIE
from .wikimedia import WikimediaIE

View File

@ -35,15 +35,6 @@ from ..utils import (
class ITVBaseIE(InfoExtractor):
def _search_nextjs_data(self, webpage, video_id, **kw):
transform_source = kw.pop('transform_source', None)
fatal = kw.pop('fatal', True)
return self._parse_json(
self._search_regex(
r'''<script\b[^>]+\bid=('|")__NEXT_DATA__\1[^>]*>(?P<js>[^<]+)</script>''',
webpage, 'next.js data', group='js', fatal=fatal, **kw),
video_id, transform_source=transform_source, fatal=fatal)
def __handle_request_webpage_error(self, err, video_id=None, errnote=None, fatal=True):
if errnote is False:
return False
@ -109,7 +100,9 @@ class ITVBaseIE(InfoExtractor):
class ITVIE(ITVBaseIE):
_VALID_URL = r'https?://(?:www\.)?itv\.com/(?:(?P<w>watch)|hub)/[^/]+/(?(w)[\w-]+/)(?P<id>\w+)'
_IE_DESC = 'ITVX'
IE_DESC = 'ITVX'
_WORKING = False
_TESTS = [{
'note': 'Hub URLs redirect to ITVX',
'url': 'https://www.itv.com/hub/liar/2a4547a0012',
@ -270,7 +263,7 @@ class ITVIE(ITVBaseIE):
'ext': determine_ext(href, 'vtt'),
})
next_data = self._search_nextjs_data(webpage, video_id, fatal=False, default='{}')
next_data = self._search_nextjs_data(webpage, video_id, fatal=False, default={})
video_data.update(traverse_obj(next_data, ('props', 'pageProps', ('title', 'episode')), expected_type=dict)[0] or {})
title = traverse_obj(video_data, 'headerTitle', 'episodeTitle')
info = self._og_extract(webpage, require_title=not title)
@ -323,7 +316,7 @@ class ITVIE(ITVBaseIE):
class ITVBTCCIE(ITVBaseIE):
_VALID_URL = r'https?://(?:www\.)?itv\.com/(?!(?:watch|hub)/)(?:[^/]+/)+(?P<id>[^/?#&]+)'
_IE_DESC = 'ITV articles: News, British Touring Car Championship'
IE_DESC = 'ITV articles: News, British Touring Car Championship'
_TESTS = [{
'note': 'British Touring Car Championship',
'url': 'https://www.itv.com/btcc/articles/btcc-2018-all-the-action-from-brands-hatch',

View File

@ -47,7 +47,7 @@ class SenateISVPIE(InfoExtractor):
['vetaff', '76462', 'http://vetaff-f.akamaihd.net'],
['arch', '', 'http://ussenate-f.akamaihd.net/']
]
_IE_NAME = 'senate.gov'
IE_NAME = 'senate.gov'
_VALID_URL = r'https?://(?:www\.)?senate\.gov/isvp/?\?(?P<qs>.+)'
_TESTS = [{
'url': 'http://www.senate.gov/isvp/?comm=judiciary&type=live&stt=&filename=judiciary031715&auto_play=false&wmode=transparent&poster=http%3A%2F%2Fwww.judiciary.senate.gov%2Fthemes%2Fjudiciary%2Fimages%2Fvideo-poster-flash-fit.png',

View File

@ -0,0 +1,69 @@
# coding: utf-8
from __future__ import unicode_literals
from .common import InfoExtractor
import re
from ..utils import (
clean_html,
determine_ext,
get_element_by_class,
urljoin,
compat_parse_qs,
ExtractorError)
class WikimediaIE(InfoExtractor):
IE_NAME = 'wikimedia.org'
_NETRC_MACHINE = 'wikimediaorg'
_API_BASE_URL = 'https://commons.wikimedia.org/'
_VALID_URL = 'https://commons.wikimedia.org/wiki/File:(?P<id>[^/]+)'
_TEST = {
'url': 'https://commons.wikimedia.org/wiki/File:Die_Temperaturkurve_der_Erde_(ZDF,_Terra_X)_720p_HD_50FPS.webm',
'info_dict': {
'description': 'md5:7cd84f76e7081f1be033d0b155b4a460',
'ext': 'webm', 'id': 'Die_Temperaturkurve_der_Erde_(ZDF,_Terra_X)_720p_HD_50FPS',
'title': 'Die Temperaturkurve der Erde (ZDF, Terra X) 720p HD 50FPS.webm - Wikimedia Commons',
'license': 'md5:62907cddf705a9f7ae7076c15407a977',
'author': None, 'subtitles': {'de': [{'ext': 'srt',
'url': 'https?://commons.wikimedia.org/w/api.php'}],
'en-gb': [{'ext': 'srt',
'url': 'https?://commons.wikimedia.org/w/api.php'}],
'nl': [{'ext': 'srt',
'url': 'https?://commons.wikimedia.org/w/api.php'}],
'en': [{'ext': 'srt',
'url': 're:https?://commons.wikimedia.org/w/api.php'}]}}
}
def _real_extract(self, url):
video_id = self._match_id(url)
ext = determine_ext(url, None)
if ext is None:
raise ExtractorError('invalid video url', expected=True)
webpage = self._download_webpage(url, video_id)
self.report_extraction(video_id)
video_url = self._html_search_regex('<source [^>]*src="([^"]+)"', webpage,
'video URL')
license = get_element_by_class('layouttemplate licensetpl mw-content-ltr', webpage)
license = clean_html(license)
description = get_element_by_class('description', webpage)
author = self._html_search_regex(r'>\s*Author\s*</td>\s*<td\b[^>]*>\s*([^<]+?)\s*</td>',
webpage, 'video author', default=None)
info = {'url': video_url, 'description': clean_html(description), 'ext': ext,
'id': video_id.replace('.' + ext, ''), 'title': self._og_search_title(webpage).replace('File:', ''),
'license': license, 'author': author}
subtitles = {}
for sub in re.findall(r'''\bsrc\s*=\s*[\"\'](\/w\/api(.*?)[\s\"])\b''', webpage):
sub = sub[0].replace('"', '''''')
sub = urljoin('https://commons.wikimedia.org', sub)
qs = compat_parse_qs(sub)
lang = qs.get('lang', [None])[-1]
if not lang:
continue
subtitles[lang] = [{'ext': 'srt', 'url': sub}]
info['subtitles'] = subtitles
return info