mirror of
https://codeberg.org/polarisfm/youtube-dl
synced 2025-01-09 14:47:55 +01:00
70 lines
2.4 KiB
Python
70 lines
2.4 KiB
Python
# coding: utf-8
|
|
from __future__ import unicode_literals
|
|
|
|
from .common import InfoExtractor
|
|
|
|
|
|
class NarandoIE(InfoExtractor):
|
|
IE_NAME = 'narando'
|
|
_VALID_URL = r'https?://narando\.com/widget\?.*?r=(?P<id>\w+)&?'
|
|
_TEST = {
|
|
'url': 'https://narando.com/widget?r=b2t4t789kxgy9g7ms4rwjvvw',
|
|
'md5': 'd20f671f0395bab8f8285d1f6e8f965e',
|
|
'info_dict': {
|
|
'id': 'b2t4t789kxgy9g7ms4rwjvvw',
|
|
'ext': 'mp3',
|
|
'title': 'An ihrem Selbstlob erkennt man sie',
|
|
}
|
|
}
|
|
|
|
def _real_extract(self, url):
|
|
video_id = self._match_id(url)
|
|
webpage = self._download_webpage(url, video_id)
|
|
title = self._html_search_regex(r'<span class="clip-title">(.+?)</span>', webpage, 'title')
|
|
download_url = self._html_search_regex(r'<div class="stream_url hide">(.+)</div>', webpage, 'download_url')
|
|
return {
|
|
'id': video_id,
|
|
'title': title,
|
|
'url': download_url,
|
|
'vcodec': 'none',
|
|
}
|
|
|
|
|
|
class NarandoArticleIE(InfoExtractor):
|
|
IE_NAME = "narando:article"
|
|
_VALID_URL = r'https?://(?:www\.)?narando\.com/(articles|r)/(?P<id>.+)'
|
|
_TESTS = [
|
|
{
|
|
'url': 'https://narando.com/articles/an-ihrem-selbstlob-erkennt-man-sie',
|
|
'md5': 'd20f671f0395bab8f8285d1f6e8f965e',
|
|
'info_dict': {
|
|
'id': 'b2t4t789kxgy9g7ms4rwjvvw',
|
|
'ext': 'mp3',
|
|
'title': 'An ihrem Selbstlob erkennt man sie',
|
|
}
|
|
},
|
|
{
|
|
'url': 'https://narando.com/r/b2t4t789kxgy9g7ms4rwjvvw', #alternate URL format
|
|
'md5': 'd20f671f0395bab8f8285d1f6e8f965e',
|
|
'info_dict': {
|
|
'id': 'b2t4t789kxgy9g7ms4rwjvvw',
|
|
'ext': 'mp3',
|
|
'title': 'An ihrem Selbstlob erkennt man sie',
|
|
}
|
|
}
|
|
]
|
|
|
|
def _real_extract(self, url):
|
|
video_id = self._match_id(url)
|
|
webpage = self._download_webpage(url, video_id)
|
|
title = self._html_search_regex(r'<h1 class="visible-xs h3">(.+?)</h1>', webpage, 'title')
|
|
player_id = self._html_search_regex(r'https://narando.com/r/(.+?)\"', webpage, 'player_id')
|
|
url_result = 'https://narando.com/widget?r=' + player_id
|
|
|
|
return {
|
|
'id': player_id,
|
|
'title': title,
|
|
'url': url_result,
|
|
'_type': 'url',
|
|
}
|