2014-01-22 20:41:28 +00:00
|
|
|
from __future__ import unicode_literals
|
|
|
|
|
2017-06-11 13:50:33 +00:00
|
|
|
import re
|
|
|
|
|
2013-09-18 14:54:45 +00:00
|
|
|
from .common import InfoExtractor
|
2017-06-11 13:50:33 +00:00
|
|
|
from ..utils import (
|
2020-10-28 23:55:47 +00:00
|
|
|
ExtractorError,
|
2017-06-11 13:50:33 +00:00
|
|
|
extract_attributes,
|
|
|
|
int_or_none,
|
2017-06-11 14:27:32 +00:00
|
|
|
parse_duration,
|
|
|
|
parse_filesize,
|
|
|
|
unified_timestamp,
|
2017-06-11 13:50:33 +00:00
|
|
|
)
|
2013-09-18 14:54:45 +00:00
|
|
|
|
2013-09-18 20:14:43 +00:00
|
|
|
|
2013-09-18 14:54:45 +00:00
|
|
|
class NewgroundsIE(InfoExtractor):
|
2016-04-16 09:36:30 +00:00
|
|
|
_VALID_URL = r'https?://(?:www\.)?newgrounds\.com/(?:audio/listen|portal/view)/(?P<id>[0-9]+)'
|
|
|
|
_TESTS = [{
|
2016-09-10 12:09:09 +00:00
|
|
|
'url': 'https://www.newgrounds.com/audio/listen/549479',
|
2014-01-22 20:41:28 +00:00
|
|
|
'md5': 'fe6033d297591288fa1c1f780386f07a',
|
|
|
|
'info_dict': {
|
2014-02-02 11:03:36 +00:00
|
|
|
'id': '549479',
|
|
|
|
'ext': 'mp3',
|
2020-10-28 23:55:47 +00:00
|
|
|
'title': 'Burn7 - B7 - BusMode',
|
2014-02-02 11:03:36 +00:00
|
|
|
'uploader': 'Burn7',
|
2017-06-11 14:27:32 +00:00
|
|
|
'timestamp': 1378878540,
|
|
|
|
'upload_date': '20130911',
|
|
|
|
'duration': 143,
|
|
|
|
},
|
2016-04-16 09:36:30 +00:00
|
|
|
}, {
|
2020-10-28 23:55:47 +00:00
|
|
|
'url': 'https://www.newgrounds.com/portal/view/1',
|
|
|
|
'md5': 'fbfb40e2dc765a7e830cb251d370d981',
|
2016-04-16 09:36:30 +00:00
|
|
|
'info_dict': {
|
2020-10-28 23:55:47 +00:00
|
|
|
'id': '1',
|
2016-04-16 09:36:30 +00:00
|
|
|
'ext': 'mp4',
|
2020-10-28 23:55:47 +00:00
|
|
|
'title': 'Brian-Beaton - Scrotum 1',
|
|
|
|
'uploader': 'Brian-Beaton',
|
|
|
|
'timestamp': 955064100,
|
|
|
|
'upload_date': '20000406',
|
2016-04-16 09:36:30 +00:00
|
|
|
},
|
2017-06-11 12:44:44 +00:00
|
|
|
}, {
|
|
|
|
# source format unavailable, additional mp4 formats
|
|
|
|
'url': 'http://www.newgrounds.com/portal/view/689400',
|
|
|
|
'info_dict': {
|
|
|
|
'id': '689400',
|
|
|
|
'ext': 'mp4',
|
2020-10-28 23:55:47 +00:00
|
|
|
'title': 'Bennettthesage - ZTV News Episode 8',
|
2017-06-11 12:44:44 +00:00
|
|
|
'uploader': 'BennettTheSage',
|
2017-06-11 14:27:32 +00:00
|
|
|
'timestamp': 1487965140,
|
|
|
|
'upload_date': '20170224',
|
2017-06-11 12:44:44 +00:00
|
|
|
},
|
|
|
|
'params': {
|
|
|
|
'skip_download': True,
|
|
|
|
},
|
2016-04-16 09:36:30 +00:00
|
|
|
}]
|
2013-09-18 14:54:45 +00:00
|
|
|
|
|
|
|
def _real_extract(self, url):
|
2016-09-10 12:09:09 +00:00
|
|
|
media_id = self._match_id(url)
|
2020-10-28 23:55:47 +00:00
|
|
|
formats = []
|
|
|
|
uploader = None
|
2016-09-10 12:09:09 +00:00
|
|
|
webpage = self._download_webpage(url, media_id)
|
2014-11-23 19:41:03 +00:00
|
|
|
|
2014-01-22 20:41:28 +00:00
|
|
|
title = self._html_search_regex(
|
2016-04-16 09:36:30 +00:00
|
|
|
r'<title>([^>]+)</title>', webpage, 'title')
|
|
|
|
|
2020-10-28 23:55:47 +00:00
|
|
|
media_url_string = self._search_regex(
|
|
|
|
r'"url"\s*:\s*("[^"]+"),', webpage, 'media url', default=None, fatal=False)
|
|
|
|
|
|
|
|
if media_url_string:
|
|
|
|
media_url = self._parse_json(media_url_string, media_id)
|
|
|
|
formats = [{
|
|
|
|
'url': media_url,
|
|
|
|
'format_id': 'source',
|
|
|
|
'quality': 1,
|
|
|
|
}]
|
|
|
|
|
|
|
|
max_resolution = int_or_none(self._search_regex(
|
|
|
|
r'max_resolution["\']\s*:\s*(\d+)', webpage, 'max resolution',
|
|
|
|
default=None))
|
|
|
|
if max_resolution:
|
|
|
|
url_base = media_url.rpartition('.')[0]
|
|
|
|
for resolution in (360, 720, 1080):
|
|
|
|
if resolution > max_resolution:
|
|
|
|
break
|
|
|
|
formats.append({
|
|
|
|
'url': '%s.%dp.mp4' % (url_base, resolution),
|
|
|
|
'format_id': '%dp' % resolution,
|
|
|
|
'height': resolution,
|
|
|
|
})
|
|
|
|
else:
|
|
|
|
video_id = int_or_none(self._search_regex(
|
|
|
|
r'data-movie-id=\\"([0-9]+)\\"', webpage, ''))
|
|
|
|
if not video_id:
|
|
|
|
raise ExtractorError('Could not extract media data')
|
|
|
|
|
|
|
|
url_video_data = 'https://www.newgrounds.com/portal/video/%s' % video_id
|
|
|
|
headers = {
|
|
|
|
'Accept': 'application/json',
|
|
|
|
'Referer': url,
|
|
|
|
'X-Requested-With': 'XMLHttpRequest'
|
|
|
|
}
|
|
|
|
json_video = self._download_json(url_video_data, video_id, headers=headers, fatal=False)
|
|
|
|
if not json_video:
|
|
|
|
raise ExtractorError('Could not fetch media data')
|
|
|
|
|
|
|
|
uploader = json_video.get('author')
|
|
|
|
title = json_video.get('title')
|
|
|
|
media_formats = json_video.get('sources', [])
|
|
|
|
for media_format in media_formats:
|
|
|
|
media_sources = media_formats[media_format]
|
|
|
|
for source in media_sources:
|
|
|
|
formats.append({
|
|
|
|
'format_id': media_format,
|
|
|
|
'quality': int_or_none(media_format[:-1]),
|
|
|
|
'url': source.get('src')
|
|
|
|
})
|
2014-11-23 19:41:03 +00:00
|
|
|
|
2017-06-11 12:44:44 +00:00
|
|
|
self._check_formats(formats, media_id)
|
|
|
|
self._sort_formats(formats)
|
|
|
|
|
2020-10-28 23:55:47 +00:00
|
|
|
if not uploader:
|
|
|
|
uploader = self._html_search_regex(
|
|
|
|
(r'(?s)<h4[^>]*>(.+?)</h4>.*?<em>\s*(?:Author|Artist)\s*</em>',
|
|
|
|
r'(?:Author|Writer)\s*<a[^>]+>([^<]+)'), webpage, 'uploader',
|
|
|
|
fatal=False)
|
2013-09-18 14:54:45 +00:00
|
|
|
|
2018-02-09 14:17:02 +00:00
|
|
|
timestamp = unified_timestamp(self._html_search_regex(
|
|
|
|
(r'<dt>\s*Uploaded\s*</dt>\s*<dd>([^<]+</dd>\s*<dd>[^<]+)',
|
|
|
|
r'<dt>\s*Uploaded\s*</dt>\s*<dd>([^<]+)'), webpage, 'timestamp',
|
2017-06-11 14:27:32 +00:00
|
|
|
default=None))
|
|
|
|
duration = parse_duration(self._search_regex(
|
2018-02-09 14:17:02 +00:00
|
|
|
r'(?s)<dd>\s*Song\s*</dd>\s*<dd>.+?</dd>\s*<dd>([^<]+)', webpage,
|
|
|
|
'duration', default=None))
|
2017-06-11 14:27:32 +00:00
|
|
|
|
|
|
|
filesize_approx = parse_filesize(self._html_search_regex(
|
2018-02-09 14:17:02 +00:00
|
|
|
r'(?s)<dd>\s*Song\s*</dd>\s*<dd>(.+?)</dd>', webpage, 'filesize',
|
2017-06-11 14:27:32 +00:00
|
|
|
default=None))
|
|
|
|
if len(formats) == 1:
|
|
|
|
formats[0]['filesize_approx'] = filesize_approx
|
|
|
|
|
|
|
|
if '<dd>Song' in webpage:
|
|
|
|
formats[0]['vcodec'] = 'none'
|
|
|
|
|
2020-10-28 23:55:47 +00:00
|
|
|
if uploader:
|
|
|
|
title = "%s - %s" % (uploader, title)
|
|
|
|
|
2013-09-18 20:14:43 +00:00
|
|
|
return {
|
2016-09-10 12:09:09 +00:00
|
|
|
'id': media_id,
|
2014-01-22 20:41:28 +00:00
|
|
|
'title': title,
|
2013-09-18 14:54:45 +00:00
|
|
|
'uploader': uploader,
|
2017-06-11 14:27:32 +00:00
|
|
|
'timestamp': timestamp,
|
|
|
|
'duration': duration,
|
2017-06-11 12:44:44 +00:00
|
|
|
'formats': formats,
|
2013-09-18 20:14:43 +00:00
|
|
|
}
|
2017-06-11 13:50:33 +00:00
|
|
|
|
|
|
|
|
|
|
|
class NewgroundsPlaylistIE(InfoExtractor):
|
|
|
|
_VALID_URL = r'https?://(?:www\.)?newgrounds\.com/(?:collection|[^/]+/search/[^/]+)/(?P<id>[^/?#&]+)'
|
|
|
|
_TESTS = [{
|
|
|
|
'url': 'https://www.newgrounds.com/collection/cats',
|
|
|
|
'info_dict': {
|
|
|
|
'id': 'cats',
|
|
|
|
'title': 'Cats',
|
|
|
|
},
|
|
|
|
'playlist_mincount': 46,
|
|
|
|
}, {
|
|
|
|
'url': 'http://www.newgrounds.com/portal/search/author/ZONE-SAMA',
|
|
|
|
'info_dict': {
|
|
|
|
'id': 'ZONE-SAMA',
|
|
|
|
'title': 'Portal Search: ZONE-SAMA',
|
|
|
|
},
|
|
|
|
'playlist_mincount': 47,
|
|
|
|
}, {
|
|
|
|
'url': 'http://www.newgrounds.com/audio/search/title/cats',
|
|
|
|
'only_matching': True,
|
|
|
|
}]
|
|
|
|
|
|
|
|
def _real_extract(self, url):
|
|
|
|
playlist_id = self._match_id(url)
|
|
|
|
|
|
|
|
webpage = self._download_webpage(url, playlist_id)
|
|
|
|
|
|
|
|
title = self._search_regex(
|
|
|
|
r'<title>([^>]+)</title>', webpage, 'title', default=None)
|
|
|
|
|
|
|
|
# cut left menu
|
|
|
|
webpage = self._search_regex(
|
|
|
|
r'(?s)<div[^>]+\bclass=["\']column wide(.+)',
|
|
|
|
webpage, 'wide column', default=webpage)
|
|
|
|
|
|
|
|
entries = []
|
|
|
|
for a, path, media_id in re.findall(
|
|
|
|
r'(<a[^>]+\bhref=["\']/?((?:portal/view|audio/listen)/(\d+))[^>]+>)',
|
|
|
|
webpage):
|
|
|
|
a_class = extract_attributes(a).get('class')
|
|
|
|
if a_class not in ('item-portalsubmission', 'item-audiosubmission'):
|
|
|
|
continue
|
|
|
|
entries.append(
|
|
|
|
self.url_result(
|
|
|
|
'https://www.newgrounds.com/%s' % path,
|
|
|
|
ie=NewgroundsIE.ie_key(), video_id=media_id))
|
|
|
|
|
|
|
|
return self.playlist_result(entries, playlist_id, title)
|