mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-02 09:12:40 +01:00
[vgtv] Add support for bt.no articles (#5620)
This commit is contained in:
parent
34e7dc81a9
commit
0ceab84749
@ -587,7 +587,10 @@
|
|||||||
from .vessel import VesselIE
|
from .vessel import VesselIE
|
||||||
from .vesti import VestiIE
|
from .vesti import VestiIE
|
||||||
from .vevo import VevoIE
|
from .vevo import VevoIE
|
||||||
from .vgtv import VGTVIE
|
from .vgtv import (
|
||||||
|
BTArticleIE,
|
||||||
|
VGTVIE,
|
||||||
|
)
|
||||||
from .vh1 import VH1IE
|
from .vh1 import VH1IE
|
||||||
from .vice import ViceIE
|
from .vice import ViceIE
|
||||||
from .viddler import ViddlerIE
|
from .viddler import ViddlerIE
|
||||||
|
@ -9,7 +9,18 @@
|
|||||||
|
|
||||||
class VGTVIE(InfoExtractor):
|
class VGTVIE(InfoExtractor):
|
||||||
IE_DESC = 'VGTV and BTTV'
|
IE_DESC = 'VGTV and BTTV'
|
||||||
_VALID_URL = r'http://(?:www\.)?(?P<host>vgtv|bt)\.no/(?:(?:tv/)?#!/(?:video|live)/(?P<id>[0-9]+)|(?:[^/]+/)*(?P<path>[^/]+))'
|
_VALID_URL = r'''(?x)
|
||||||
|
(?:
|
||||||
|
vgtv:|
|
||||||
|
http://(?:www\.)?
|
||||||
|
)
|
||||||
|
(?P<host>vgtv|bt)
|
||||||
|
(?:
|
||||||
|
:|
|
||||||
|
\.no/(?:tv/)?#!/(?:video|live)/
|
||||||
|
)
|
||||||
|
(?P<id>[0-9]+)
|
||||||
|
'''
|
||||||
_TESTS = [
|
_TESTS = [
|
||||||
{
|
{
|
||||||
# streamType: vod
|
# streamType: vod
|
||||||
@ -129,3 +140,29 @@ def _real_extract(self, url):
|
|||||||
'view_count': data['displays'],
|
'view_count': data['displays'],
|
||||||
'formats': formats,
|
'formats': formats,
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
class BTArticleIE(InfoExtractor):
|
||||||
|
IE_DESC = 'Bergens Tidende'
|
||||||
|
_VALID_URL = 'http://(?:www\.)?bt\.no/(?:[^/]+/)+(?P<id>[^/]+)-\d+\.html'
|
||||||
|
_TEST = {
|
||||||
|
'url': 'http://www.bt.no/nyheter/lokalt/Kjemper-for-internatet-1788214.html',
|
||||||
|
'md5': 'd055e8ee918ef2844745fcfd1a4175fb',
|
||||||
|
'info_dict': {
|
||||||
|
'id': '23199',
|
||||||
|
'ext': 'mp4',
|
||||||
|
'title': 'Alrekstad internat',
|
||||||
|
'description': 'md5:dc81a9056c874fedb62fc48a300dac58',
|
||||||
|
'thumbnail': 're:^https?://.*\.jpg',
|
||||||
|
'duration': 191,
|
||||||
|
'timestamp': 1289991323,
|
||||||
|
'upload_date': '20101117',
|
||||||
|
'view_count': int,
|
||||||
|
},
|
||||||
|
}
|
||||||
|
|
||||||
|
def _real_extract(self, url):
|
||||||
|
webpage = self._download_webpage(url, self._match_id(url))
|
||||||
|
video_id = self._search_regex(
|
||||||
|
r'SVP\.Player\.load\(\s*(\d+)', webpage, 'video id')
|
||||||
|
return self.url_result('vgtv:bt:%s' % video_id, 'VGTV')
|
||||||
|
Loading…
Reference in New Issue
Block a user