youtube-dl

Another place where youtube-dl lives on
git clone git://git.oshgnacknak.de/youtube-dl.git
Log | Files | Refs | README | LICENSE

commit 609850acfb6c03dcdfa4d9cdba77df3b0a259968
parent 64287560e4a7af9401e84318d9d04783c1b289af
Author: Sergey M․ <dstftw@gmail.com>
Date:   Thu, 11 Jan 2018 23:10:18 +0700

[pandoratv] Add support for mobile URLs (closes #12441)

Diffstat:
Myoutube_dl/extractor/pandoratv.py | 6+++++-
1 file changed, 5 insertions(+), 1 deletion(-)

diff --git a/youtube_dl/extractor/pandoratv.py b/youtube_dl/extractor/pandoratv.py @@ -24,7 +24,8 @@ class PandoraTVIE(InfoExtractor): https?:// (?: (?: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 = [{ @@ -64,6 +65,9 @@ class PandoraTVIE(InfoExtractor): }, { 'url': 'http://www.pandora.tv/view/mikakim/53294230#36797454_new', 'only_matching': True, + }, { + 'url': 'http://m.pandora.tv/?c=view&ch_userid=mikakim&prgid=54600346', + 'only_matching': True, }] def _real_extract(self, url):