mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-28 18:21:26 +01:00
Compare commits
No commits in common. "d7c1751bb67151ed26611f2bd7cac52ad092a9d7" and "9a17e3a919a25a97d57d2f7499e69212988c3712" have entirely different histories.
d7c1751bb6
...
9a17e3a919
|
@ -1471,7 +1471,6 @@
|
||||||
- **TuneInPodcast**
|
- **TuneInPodcast**
|
||||||
- **TuneInPodcastEpisode**
|
- **TuneInPodcastEpisode**
|
||||||
- **TuneInStation**
|
- **TuneInStation**
|
||||||
- **Turbo**
|
|
||||||
- **tv.dfb.de**
|
- **tv.dfb.de**
|
||||||
- **TV2**
|
- **TV2**
|
||||||
- **TV2Article**
|
- **TV2Article**
|
||||||
|
@ -1601,6 +1600,7 @@
|
||||||
- **ViMP:Playlist**
|
- **ViMP:Playlist**
|
||||||
- **Vine**
|
- **Vine**
|
||||||
- **vine:user**
|
- **vine:user**
|
||||||
|
- **viously**
|
||||||
- **Viqeo**
|
- **Viqeo**
|
||||||
- **Viu**
|
- **Viu**
|
||||||
- **viu:ott**: [*viu*](## "netrc machine")
|
- **viu:ott**: [*viu*](## "netrc machine")
|
||||||
|
|
|
@ -1,17 +1,13 @@
|
||||||
import base64
|
|
||||||
|
|
||||||
from .common import InfoExtractor
|
from .common import InfoExtractor
|
||||||
from ..utils import (
|
from ..utils import (
|
||||||
extract_attributes,
|
get_element_html_by_class,
|
||||||
get_elements_html_by_class,
|
get_elements_html_by_class,
|
||||||
int_or_none,
|
|
||||||
parse_iso8601,
|
|
||||||
)
|
)
|
||||||
from ..utils.traversal import traverse_obj
|
|
||||||
|
|
||||||
|
|
||||||
class ViouslyIE(InfoExtractor):
|
class ViouslyIE(InfoExtractor):
|
||||||
_VALID_URL = False
|
_VALID_URL = False
|
||||||
|
_API_URL = 'https://www.viously.com/video/hls/{0:}/index.m3u8'
|
||||||
_WEBPAGE_TESTS = [{
|
_WEBPAGE_TESTS = [{
|
||||||
'url': 'http://www.turbo.fr/videos-voiture/454443-turbo-du-07-09-2014-renault-twingo-3-bentley-continental-gt-speed-ces-guide-achat-dacia.html',
|
'url': 'http://www.turbo.fr/videos-voiture/454443-turbo-du-07-09-2014-renault-twingo-3-bentley-continental-gt-speed-ces-guide-achat-dacia.html',
|
||||||
'md5': '37a6c3381599381ff53a7e1e0575c0bc',
|
'md5': '37a6c3381599381ff53a7e1e0575c0bc',
|
||||||
|
@ -27,32 +23,16 @@ class ViouslyIE(InfoExtractor):
|
||||||
}]
|
}]
|
||||||
|
|
||||||
def _extract_from_webpage(self, url, webpage):
|
def _extract_from_webpage(self, url, webpage):
|
||||||
viously_players = get_elements_html_by_class('viously-player', webpage) + get_elements_html_by_class('vsly-player', webpage)
|
has_vously_player = get_element_html_by_class('viously-player', webpage) or get_element_html_by_class('vsly-player', webpage)
|
||||||
if not viously_players:
|
if not has_vously_player:
|
||||||
return
|
return
|
||||||
|
viously_players = get_elements_html_by_class('viously-player', webpage) + get_elements_html_by_class('vsly-player', webpage)
|
||||||
def custom_decode(text):
|
for viously_player in viously_players:
|
||||||
STANDARD_ALPHABET = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/='
|
video_id = self._html_search_regex(r'id="([-_\w]+)"', viously_player, 'video_id')
|
||||||
CUSTOM_ALPHABET = 'VIOUSLYABCDEFGHJKMNPQRTWXZviouslyabcdefghjkmnpqrtwxz9876543210+/='
|
title = self._html_extract_title(webpage)
|
||||||
data = base64.b64decode(text.translate(str.maketrans(CUSTOM_ALPHABET, STANDARD_ALPHABET)))
|
|
||||||
return data.decode('utf-8').strip('\x00')
|
|
||||||
|
|
||||||
for video_id in traverse_obj(viously_players, (..., {extract_attributes}, 'id')):
|
|
||||||
formats = self._extract_m3u8_formats(
|
|
||||||
f'https://www.viously.com/video/hls/{video_id}/index.m3u8', video_id, fatal=False)
|
|
||||||
data = self._download_json(
|
|
||||||
f'https://www.viously.com/export/json/{video_id}', video_id,
|
|
||||||
transform_source=custom_decode, fatal=False)
|
|
||||||
if not formats or not data:
|
|
||||||
continue
|
|
||||||
yield {
|
yield {
|
||||||
'id': video_id,
|
'id': video_id,
|
||||||
'formats': formats,
|
'title': title,
|
||||||
**traverse_obj(data, ('video', {
|
'description': title,
|
||||||
'title': 'title',
|
'formats': self._extract_m3u8_formats(self._API_URL.format(video_id), video_id),
|
||||||
'description': 'description',
|
|
||||||
'duration': ('duration', {int_or_none}),
|
|
||||||
'timestamp': ('iso_date', {parse_iso8601}),
|
|
||||||
'categories': ('category', {lambda x: [x['name']]}),
|
|
||||||
})),
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue
Block a user