mirror of
https://codeberg.org/polarisfm/youtube-dl
synced 2024-11-22 16:44:32 +01:00
[requestforcomments] new extractor for requestforcomments podcast
This commit is contained in:
parent
6202f08e1b
commit
a142226695
@ -885,6 +885,7 @@ from .rentv import (
|
||||
RENTVIE,
|
||||
RENTVArticleIE,
|
||||
)
|
||||
from .requestforcomments import RequestForCommentsIE
|
||||
from .restudy import RestudyIE
|
||||
from .reuters import ReutersIE
|
||||
from .reverbnation import ReverbNationIE
|
||||
|
64
youtube_dl/extractor/requestforcomments.py
Normal file
64
youtube_dl/extractor/requestforcomments.py
Normal file
@ -0,0 +1,64 @@
|
||||
# coding: utf-8
|
||||
from __future__ import unicode_literals
|
||||
|
||||
import re
|
||||
|
||||
from .common import InfoExtractor
|
||||
|
||||
|
||||
class RequestForCommentsIE(InfoExtractor):
|
||||
_VALID_URL = r'https?://(?:www\.)?requestforcomments.de/(?:archives/|\?p=)(?P<id>[^\s]+)'
|
||||
_TESTS = [{
|
||||
'url': 'https://requestforcomments.de/archives/412',
|
||||
'info_dict': {
|
||||
'id': '412',
|
||||
'ext': 'ogg',
|
||||
'formats': 'mincount:4',
|
||||
'title': 'RFCE014: IPv6',
|
||||
'description': 'md5:e0924fc2a3536107c2055b3c36bef2e9',
|
||||
'site_name': 'Request for Comments',
|
||||
'thumbnail': r're:^https?://.*\.jpg$',
|
||||
},
|
||||
'params': {
|
||||
'skip_download': True,
|
||||
},
|
||||
}, {
|
||||
'url': 'https://requestforcomments.de/?p=412',
|
||||
'info_dict': {
|
||||
'id': '412',
|
||||
'ext': 'ogg',
|
||||
'formats': 'mincount:4',
|
||||
'title': 'RFCE014: IPv6',
|
||||
'description': 'md5:e0924fc2a3536107c2055b3c36bef2e9',
|
||||
'site_name': 'Request for Comments',
|
||||
'thumbnail': r're:^https?://.*\.jpg$',
|
||||
},
|
||||
'params': {
|
||||
'skip_download': True,
|
||||
},
|
||||
}]
|
||||
|
||||
def _real_extract(self, url):
|
||||
|
||||
content_id = self._match_id(url).strip('/')
|
||||
webpage = self._download_webpage(url, content_id)
|
||||
|
||||
audio_reg = self._og_regexes('audio')
|
||||
audio_type_reg = self._og_regexes('audio:type')
|
||||
|
||||
formats = []
|
||||
for audio_url, audio_type in zip(
|
||||
re.findall(audio_reg[0], webpage),
|
||||
re.findall(audio_type_reg[0], webpage)):
|
||||
formats.append({
|
||||
'url': audio_url[0],
|
||||
'format_id': audio_type[0]})
|
||||
|
||||
return {
|
||||
'id': content_id,
|
||||
'title': self._og_search_title(webpage),
|
||||
'site_name': self._og_search_property('site_name', webpage),
|
||||
'description': self._og_search_description(webpage),
|
||||
'thumbnail': self._og_search_thumbnail(webpage),
|
||||
'formats': formats,
|
||||
}
|
Loading…
Reference in New Issue
Block a user