mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-10 09:07:58 +01:00
[pandoratv] Add support for mobile URLs (closes #12441)
This commit is contained in:
parent
64287560e4
commit
609850acfb
1 changed files with 5 additions and 1 deletions
|
@ -24,7 +24,8 @@ class PandoraTVIE(InfoExtractor):
|
||||||
https?://
|
https?://
|
||||||
(?:
|
(?:
|
||||||
(?:www\.)?pandora\.tv/view/(?P<user_id>[^/]+)/(?P<id>\d+)| # new format
|
(?:www\.)?pandora\.tv/view/(?P<user_id>[^/]+)/(?P<id>\d+)| # new format
|
||||||
(?:.+?\.)?channel\.pandora\.tv/channel/video\.ptv\? # old format
|
(?:.+?\.)?channel\.pandora\.tv/channel/video\.ptv\?| # old format
|
||||||
|
m\.pandora\.tv/?\? # mobile
|
||||||
)
|
)
|
||||||
'''
|
'''
|
||||||
_TESTS = [{
|
_TESTS = [{
|
||||||
|
@ -64,6 +65,9 @@ class PandoraTVIE(InfoExtractor):
|
||||||
}, {
|
}, {
|
||||||
'url': 'http://www.pandora.tv/view/mikakim/53294230#36797454_new',
|
'url': 'http://www.pandora.tv/view/mikakim/53294230#36797454_new',
|
||||||
'only_matching': True,
|
'only_matching': True,
|
||||||
|
}, {
|
||||||
|
'url': 'http://m.pandora.tv/?c=view&ch_userid=mikakim&prgid=54600346',
|
||||||
|
'only_matching': True,
|
||||||
}]
|
}]
|
||||||
|
|
||||||
def _real_extract(self, url):
|
def _real_extract(self, url):
|
||||||
|
|
Loading…
Reference in a new issue