mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-13 02:14:20 +01:00
[funk] Add extractor (closes #14464)
This commit is contained in:
parent
694b61545c
commit
ff3f1a62f0
3 changed files with 44 additions and 16 deletions
|
@ -381,6 +381,7 @@
|
||||||
from .freespeech import FreespeechIE
|
from .freespeech import FreespeechIE
|
||||||
from .freshlive import FreshLiveIE
|
from .freshlive import FreshLiveIE
|
||||||
from .funimation import FunimationIE
|
from .funimation import FunimationIE
|
||||||
|
from .funk import FunkIE
|
||||||
from .funnyordie import FunnyOrDieIE
|
from .funnyordie import FunnyOrDieIE
|
||||||
from .fusion import FusionIE
|
from .fusion import FusionIE
|
||||||
from .fxnetworks import FXNetworksIE
|
from .fxnetworks import FXNetworksIE
|
||||||
|
|
43
youtube_dl/extractor/funk.py
Normal file
43
youtube_dl/extractor/funk.py
Normal file
|
@ -0,0 +1,43 @@
|
||||||
|
# coding: utf-8
|
||||||
|
from __future__ import unicode_literals
|
||||||
|
|
||||||
|
from .common import InfoExtractor
|
||||||
|
from .nexx import NexxIE
|
||||||
|
from ..utils import extract_attributes
|
||||||
|
|
||||||
|
|
||||||
|
class FunkIE(InfoExtractor):
|
||||||
|
_VALID_URL = r'https?://(?:www\.)?funk\.net/(?:mix|channel)/(?:[^/]+/)*(?P<id>[^?/#]+)'
|
||||||
|
_TESTS = [{
|
||||||
|
'url': 'https://www.funk.net/mix/59d65d935f8b160001828b5b/0/59d517e741dca10001252574/',
|
||||||
|
'md5': '4d40974481fa3475f8bccfd20c5361f8',
|
||||||
|
'info_dict': {
|
||||||
|
'id': '716599',
|
||||||
|
'ext': 'mp4',
|
||||||
|
'title': 'Neue Rechte Welle',
|
||||||
|
'description': 'md5:a30a53f740ffb6bfd535314c2cc5fb69',
|
||||||
|
'timestamp': 1501337639,
|
||||||
|
'upload_date': '20170729',
|
||||||
|
},
|
||||||
|
'params': {
|
||||||
|
'format': 'bestvideo',
|
||||||
|
'skip_download': True,
|
||||||
|
},
|
||||||
|
}, {
|
||||||
|
'url': 'https://www.funk.net/channel/59d5149841dca100012511e3/0/59d52049999264000182e79d/',
|
||||||
|
'only_matching': True,
|
||||||
|
}]
|
||||||
|
|
||||||
|
def _real_extract(self, url):
|
||||||
|
video_id = self._match_id(url)
|
||||||
|
|
||||||
|
webpage = self._download_webpage(url, video_id)
|
||||||
|
|
||||||
|
domain_id = NexxIE._extract_domain_id(webpage) or '741'
|
||||||
|
nexx_id = extract_attributes(self._search_regex(
|
||||||
|
r'(<div[^>]id=["\']mediaplayer-funk[^>]+>)',
|
||||||
|
webpage, 'media player'))['data-id']
|
||||||
|
|
||||||
|
return self.url_result(
|
||||||
|
'nexx:%s:%s' % (domain_id, nexx_id), ie=NexxIE.ie_key(),
|
||||||
|
video_id=nexx_id)
|
|
@ -1613,22 +1613,6 @@ class GenericIE(InfoExtractor):
|
||||||
},
|
},
|
||||||
'add_ie': ['BrightcoveLegacy'],
|
'add_ie': ['BrightcoveLegacy'],
|
||||||
},
|
},
|
||||||
# Nexx embed
|
|
||||||
{
|
|
||||||
'url': 'https://www.funk.net/serien/5940e15073f6120001657956/items/593efbb173f6120001657503',
|
|
||||||
'info_dict': {
|
|
||||||
'id': '247746',
|
|
||||||
'ext': 'mp4',
|
|
||||||
'title': "Yesterday's Jam (OV)",
|
|
||||||
'description': 'md5:09bc0984723fed34e2581624a84e05f0',
|
|
||||||
'timestamp': 1492594816,
|
|
||||||
'upload_date': '20170419',
|
|
||||||
},
|
|
||||||
'params': {
|
|
||||||
'format': 'bestvideo',
|
|
||||||
'skip_download': True,
|
|
||||||
},
|
|
||||||
},
|
|
||||||
# Facebook <iframe> embed
|
# Facebook <iframe> embed
|
||||||
{
|
{
|
||||||
'url': 'https://www.hostblogger.de/blog/archives/6181-Auto-jagt-Betonmischer.html',
|
'url': 'https://www.hostblogger.de/blog/archives/6181-Auto-jagt-Betonmischer.html',
|
||||||
|
|
Loading…
Reference in a new issue