Compare commits

...

7 Commits

Author SHA1 Message Date
dirkf
d9a1ab8fb3
Merge 08202a62a7 into c5098961b0 2024-08-21 22:33:01 -04:00
dirkf
c5098961b0 [Youtube] Rework n function extraction pattern
Now also succeeds with player b12cc44b
2024-08-06 20:59:09 +01:00
dirkf
dbc08fba83 [jsinterp] Improve slice implementation for player b12cc44b
Partly taken from yt-dlp/yt-dlp#10664, thx seproDev
        Fixes #32896
2024-08-06 20:51:38 +01:00
Aiur Adept
71223bff39
[Youtube] Fix nsig extraction for player 20dfca59 (#32891)
* dirkf's patch for nsig extraction
* add generic search per  yt-dlp/yt-dlp/pull/10611 - thx bashonly

---------

Co-authored-by: dirkf <fieldhouse@gmx.net>
2024-08-01 19:18:34 +01:00
df
08202a62a7 Fix tests 2021-09-25 00:48:30 +01:00
dirkf
a15f994677 Extraction tweaks for Comedy Central playlists
Return a single item as a video result; retain the 6-char ID as display_id
2021-08-09 04:48:05 +01:00
dirkf
5997ce694a Add playlist extraction for Comedy Central 2021-08-09 04:48:05 +01:00
8 changed files with 219 additions and 17 deletions

View File

@ -425,6 +425,34 @@ class TestJSInterpreter(unittest.TestCase):
self._test(jsi, [''], args=['', '-'])
self._test(jsi, [], args=['', ''])
def test_slice(self):
self._test('function f(){return [0, 1, 2, 3, 4, 5, 6, 7, 8].slice()}', [0, 1, 2, 3, 4, 5, 6, 7, 8])
self._test('function f(){return [0, 1, 2, 3, 4, 5, 6, 7, 8].slice(0)}', [0, 1, 2, 3, 4, 5, 6, 7, 8])
self._test('function f(){return [0, 1, 2, 3, 4, 5, 6, 7, 8].slice(5)}', [5, 6, 7, 8])
self._test('function f(){return [0, 1, 2, 3, 4, 5, 6, 7, 8].slice(99)}', [])
self._test('function f(){return [0, 1, 2, 3, 4, 5, 6, 7, 8].slice(-2)}', [7, 8])
self._test('function f(){return [0, 1, 2, 3, 4, 5, 6, 7, 8].slice(-99)}', [0, 1, 2, 3, 4, 5, 6, 7, 8])
self._test('function f(){return [0, 1, 2, 3, 4, 5, 6, 7, 8].slice(0, 0)}', [])
self._test('function f(){return [0, 1, 2, 3, 4, 5, 6, 7, 8].slice(1, 0)}', [])
self._test('function f(){return [0, 1, 2, 3, 4, 5, 6, 7, 8].slice(0, 1)}', [0])
self._test('function f(){return [0, 1, 2, 3, 4, 5, 6, 7, 8].slice(3, 6)}', [3, 4, 5])
self._test('function f(){return [0, 1, 2, 3, 4, 5, 6, 7, 8].slice(1, -1)}', [1, 2, 3, 4, 5, 6, 7])
self._test('function f(){return [0, 1, 2, 3, 4, 5, 6, 7, 8].slice(-1, 1)}', [])
self._test('function f(){return [0, 1, 2, 3, 4, 5, 6, 7, 8].slice(-3, -1)}', [6, 7])
self._test('function f(){return "012345678".slice()}', '012345678')
self._test('function f(){return "012345678".slice(0)}', '012345678')
self._test('function f(){return "012345678".slice(5)}', '5678')
self._test('function f(){return "012345678".slice(99)}', '')
self._test('function f(){return "012345678".slice(-2)}', '78')
self._test('function f(){return "012345678".slice(-99)}', '012345678')
self._test('function f(){return "012345678".slice(0, 0)}', '')
self._test('function f(){return "012345678".slice(1, 0)}', '')
self._test('function f(){return "012345678".slice(0, 1)}', '0')
self._test('function f(){return "012345678".slice(3, 6)}', '345')
self._test('function f(){return "012345678".slice(1, -1)}', '1234567')
self._test('function f(){return "012345678".slice(-1, 1)}', '')
self._test('function f(){return "012345678".slice(-3, -1)}', '67')
if __name__ == '__main__':
unittest.main()

View File

@ -174,6 +174,14 @@ _NSIG_TESTS = [
'https://www.youtube.com/s/player/5604538d/player_ias.vflset/en_US/base.js',
'7X-he4jjvMx7BCX', 'sViSydX8IHtdWA',
),
(
'https://www.youtube.com/s/player/20dfca59/player_ias.vflset/en_US/base.js',
'-fLCxedkAk4LUTK2', 'O8kfRq1y1eyHGw',
),
(
'https://www.youtube.com/s/player/b12cc44b/player_ias.vflset/en_US/base.js',
'keLa5R2U00sR9SQK', 'N1OGyujjEwMnLw',
),
]

View File

@ -1,15 +1,22 @@
from __future__ import unicode_literals
import re
from ..compat import (
compat_str,
compat_urlparse,
)
from ..utils import urljoin
from .mtv import MTVServicesInfoExtractor
class ComedyCentralIE(MTVServicesInfoExtractor):
_VALID_URL = r'https?://(?:www\.)?cc\.com/(?:episodes|video(?:-clips)?)/(?P<id>[0-9a-z]{6})'
_VALID_URL = r'https?://(?:www\.)?cc\.com/(?:episodes|video(?:-clips)?|collection-playlist/[0-9a-z]+/[^/]+)/(?P<id>[0-9a-z]{6})'
_FEED_URL = 'http://comedycentral.com/feeds/mrss/'
_TESTS = [{
'url': 'http://www.cc.com/video-clips/5ke9v2/the-daily-show-with-trevor-noah-doc-rivers-and-steve-ballmer---the-nba-player-strike',
'md5': 'b8acb347177c680ff18a292aa2166f80',
'md5': '58e7caf5c7c0c865d9d79f7d151e5090',
'info_dict': {
'id': '89ccc86e-1b02-4f83-b0c9-1d9592ecd025',
'ext': 'mp4',
@ -18,13 +25,29 @@ class ComedyCentralIE(MTVServicesInfoExtractor):
'timestamp': 1598670000,
'upload_date': '20200829',
},
'params': {
'hls_prefer_native': False,
},
}, {
'url': 'http://www.cc.com/episodes/pnzzci/drawn-together--american-idol--parody-clip-show-season-3-ep-314',
'only_matching': True,
}, {
'url': 'https://www.cc.com/video/k3sdvm/the-daily-show-with-jon-stewart-exclusive-the-fourth-estate',
'only_matching': True,
}]
}, {
'url': 'https://www.cc.com/collection-playlist/8b7hw5/the-daily-shows-summer-exclusives/o2qny3',
'info_dict': {
'id': '2f56e756-91ec-4d68-8799-e3b710e360e4',
'ext': 'mp4',
'title': 'The Daily Show with Trevor Noah|August 4, 2021|26|NO-EPISODE#|Hottest Take - The Olympics',
'description': 'md5:104484314a4cba36d8c62b094523efc8',
'timestamp': 1628125200,
'upload_date': '20210805',
},
'params': {
'hls_prefer_native': False,
},
}, ]
class ComedyCentralTVIE(MTVServicesInfoExtractor):
@ -49,3 +72,99 @@ class ComedyCentralTVIE(MTVServicesInfoExtractor):
'imageEp': 'web.cc.tv',
'mgid': uri,
}
class ComedyCentralCollectionIE(ComedyCentralIE):
_VALID_URL = r'https?://(?:www\.)?cc\.com/collections/(?P<id>[0-9a-z]{6})(?:/[^/]*)?'
_TESTS = [{
'url': 'https://www.cc.com/collections/8b7hw5/the-daily-show-s-summer-exclusives',
'info_dict': {
'id': '8b7hw5',
'title': "The Daily Show's Summer Exclusives",
'description': 'md5:ae65028fcf8438e65f1c98099119fe6d',
},
'playlist_mincount': 11,
}, ]
_CLIP_IE = 'ComedyCentral'
# we need to know the redirected URL, so stash it in the extractor
# strange that this hasn't been a general requirement
def _request_webpage(self, url_or_request, video_id,
note=None, errnote=None, fatal=True, data=None,
headers={}, query={}, expected_status=None):
urlh = super(ComedyCentralCollectionIE, self)._request_webpage(
url_or_request, video_id, note, errnote, fatal,
data, headers, query, expected_status)
if urlh is not False:
self._url = urlh.geturl()
elif isinstance(url_or_request, compat_str):
self._url = url_or_request
else:
self._url = url_or_request.get_full_url()
return urlh
def _get_clip_id(self, url):
return None
def _real_extract(self, url):
playlist_id = self._match_id(url)
webpage = self._download_webpage(url, playlist_id)
url = self._url
clip_id = self._get_clip_id(url)
if clip_id:
url = url.rstrip(clip_id)
else:
url = url.replace('/collections/', '/collection-playlist/')
path = compat_urlparse.urlparse(url).path
if path.endswith('/'):
path = path[:-1]
clip_urls = re.finditer(
r'<a\s?[^>]*?href\s*=\s*"(?P<link>%s/(?P<id>[0-9a-z]{6}))"[^<]*>' % path,
webpage)
playlist_title = (self._html_search_meta('twitter:title', webpage, 'title')
or self._og_search_title(webpage, display_name='title')
or self._html_search_regex(r'<title\s?[^>]*>([^<]+)</',
webpage, 'title', default=None))
playlist_desc = (self._html_search_meta(('description', 'twitter:description'), webpage)
or self._og_search_description(webpage, display_name='description'))
pl = self.playlist_from_matches(clip_urls, playlist_id, playlist_title,
lambda m: urljoin(url, m.group('link')),
self._CLIP_IE)
if pl:
pl['description'] = playlist_desc
return pl
class ComedyCentralPlaylistIE(ComedyCentralCollectionIE):
_VALID_URL = r'https?://(?:www\.)?cc\.com/playlists/(?P<id>[0-9a-z]{6})(?:/(?:[^/]+(?:/(?P<clip_id>[0-9a-z]{6})?)?)?)?'
_TESTS = [{
'url': 'https://www.cc.com/playlists/mym6e5/corporate-working-nine-to-five',
'info_dict': {
'id': 'mym6e5',
'title': 'Coffee Break - Corporate | Comedy Central US',
'description': 'md5:89bc6e8e983ad34ded85af84108f6ea8',
},
'playlist_mincount': 5,
}, {
'url': 'https://www.cc.com/playlists/mym6e5/corporate-working-nine-to-five/dm8ekc',
'only_matching': True,
}, ]
def _get_clip_id(self, url):
mobj = re.match(self._VALID_URL, url)
return mobj.group('clip_id')
def _real_initialize(self):
self._CLIP_IE = self.IE_NAME
def _real_extract(self, url):
if self._get_clip_id(url):
return ComedyCentralIE._real_extract(self, url)
playlist_id = self._match_id(url)
if self._downloader.params.get('noplaylist', False):
_ = self._download_webpage(url, playlist_id)
if self._get_clip_id(self._url):
self.to_screen(
'Downloading just the "now playing" clip because of --no-playlist')
return self.url_result(self._url, self._CLIP_IE, playlist_id)
return super(ComedyCentralPlaylistIE, self)._real_extract(url)

View File

@ -251,6 +251,8 @@ from .coub import CoubIE
from .comedycentral import (
ComedyCentralIE,
ComedyCentralTVIE,
ComedyCentralCollectionIE,
ComedyCentralPlaylistIE,
)
from .commonmistakes import CommonMistakesIE, UnicodeBOMIE
from .commonprotocols import (

View File

@ -903,6 +903,9 @@ class GenericIE(InfoExtractor):
'timestamp': 1349922600,
'upload_date': '20121011',
},
'params': {
'hls-prefer-native': False,
},
},
# YouTube embed via <data-embed-url="">
{

View File

@ -229,6 +229,8 @@ class MTVServicesInfoExtractor(InfoExtractor):
if info:
entries.append(info)
if len(entries) == 1:
return entries[0]
return self.playlist_result(
entries, playlist_title=title, playlist_description=description)
@ -290,7 +292,7 @@ class MTVServicesInfoExtractor(InfoExtractor):
main_container = self._extract_child_with_type(data, 'MainContainer')
ab_testing = self._extract_child_with_type(main_container, 'ABTesting')
video_player = self._extract_child_with_type(ab_testing or main_container, 'VideoPlayer')
mgid = video_player['props']['media']['video']['config']['uri']
mgid = try_get(video_player, lambda x: x['props']['media']['video']['config']['uri'])
return mgid
@ -298,7 +300,11 @@ class MTVServicesInfoExtractor(InfoExtractor):
title = url_basename(url)
webpage = self._download_webpage(url, title)
mgid = self._extract_mgid(webpage)
if not mgid:
raise ExtractorError('Unable to determine MTVServices ID (mgid)', expected=True)
videos_info = self._get_videos_info(mgid)
if videos_info and videos_info.get('_type') != 'playlist':
videos_info['display_id'] = title
return videos_info

View File

@ -1659,17 +1659,46 @@ class YoutubeIE(YoutubeBaseInfoExtractor):
def _extract_n_function_name(self, jscode):
func_name, idx = self._search_regex(
# new: (b=String.fromCharCode(110),c=a.get(b))&&c=nfunc[idx](c)
# or: (b="nn"[+a.D],c=a.get(b))&&(c=nfunc[idx](c)s
# old: .get("n"))&&(b=nfunc[idx](b)
# older: .get("n"))&&(b=nfunc(b)
# or: (b="nn"[+a.D],c=a.get(b))&&(c=nfunc[idx](c)
# or: (PL(a),b=a.j.n||null)&&(b=nfunc[idx](b)
# or: (b="nn"[+a.D],vL(a),c=a.j[b]||null)&&(c=narray[idx](c),a.set(b,c),narray.length||nfunc("")
# old: (b=a.get("n"))&&(b=nfunc[idx](b)(?P<c>[a-z])\s*=\s*[a-z]\s*
# older: (b=a.get("n"))&&(b=nfunc(b)
r'''(?x)
(?:\(\s*(?P<b>[a-z])\s*=\s*(?:
String\s*\.\s*fromCharCode\s*\(\s*110\s*\)|
"n+"\[\s*\+?s*[\w$.]+\s*]
)\s*,(?P<c>[a-z])\s*=\s*[a-z]\s*)?
\.\s*get\s*\(\s*(?(b)(?P=b)|"n{1,2}")(?:\s*\)){2}\s*&&\s*\(\s*(?(c)(?P=c)|b)\s*=\s*
(?P<nfunc>[a-zA-Z_$][\w$]*)(?:\s*\[(?P<idx>\d+)\])?\s*\(\s*[\w$]+\s*\)
''', jscode, 'Initial JS player n function name', group=('nfunc', 'idx'))
\((?:[\w$()\s]+,)*?\s* # (
(?P<b>[a-z])\s*=\s* # b=
(?:
(?: # expect ,c=a.get(b) (etc)
String\s*\.\s*fromCharCode\s*\(\s*110\s*\)|
"n+"\[\s*\+?s*[\w$.]+\s*]
)\s*(?:,[\w$()\s]+(?=,))*|
(?P<old>[\w$]+) # a (old[er])
)\s*
(?(old)
# b.get("n")
(?:\.\s*[\w$]+\s*|\[\s*[\w$]+\s*]\s*)*?
(?:\.\s*n|\[\s*"n"\s*]|\.\s*get\s*\(\s*"n"\s*\))
| # ,c=a.get(b)
,\s*(?P<c>[a-z])\s*=\s*[a-z]\s*
(?:\.\s*[\w$]+\s*|\[\s*[\w$]+\s*]\s*)*?
(?:\[\s*(?P=b)\s*]|\.\s*get\s*\(\s*(?P=b)\s*\))
)
# interstitial junk
\s*(?:\|\|\s*null\s*)?(?:\)\s*)?&&\s*(?:\(\s*)?
(?(c)(?P=c)|(?P=b))\s*=\s* # [c|b]=
# nfunc|nfunc[idx]
(?P<nfunc>[a-zA-Z_$][\w$]*)(?:\s*\[(?P<idx>\d+)\])?\s*\(\s*[\w$]+\s*\)
''', jscode, 'Initial JS player n function name', group=('nfunc', 'idx'),
default=(None, None))
# thx bashonly: yt-dlp/yt-dlp/pull/10611
if not func_name:
self.report_warning('Falling back to generic n function search')
return self._search_regex(
r'''(?xs)
(?:(?<=[^\w$])|^) # instead of \b, which ignores $
(?P<name>(?!\d)[a-zA-Z\d_$]+)\s*=\s*function\((?!\d)[a-zA-Z\d_$]+\)
\s*\{(?:(?!};).)+?["']enhanced_except_
''', jscode, 'Initial JS player n function name', group='name')
if not idx:
return func_name

View File

@ -925,9 +925,16 @@ class JSInterpreter(object):
obj.reverse()
return obj
elif member == 'slice':
assertion(isinstance(obj, list), 'must be applied on a list')
assertion(len(argvals) == 1, 'takes exactly one argument')
return obj[argvals[0]:]
assertion(isinstance(obj, (list, compat_str)), 'must be applied on a list or string')
# From [1]:
# .slice() - like [:]
# .slice(n) - like [n:] (not [slice(n)]
# .slice(m, n) - like [m:n] or [slice(m, n)]
# [1] https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/slice
assertion(len(argvals) <= 2, 'takes between 0 and 2 arguments')
if len(argvals) < 2:
argvals += (None,)
return obj[slice(*argvals)]
elif member == 'splice':
assertion(isinstance(obj, list), 'must be applied on a list')
assertion(argvals, 'takes one or more arguments')