youtube-dl

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

commit b09c122373ad3a1e04148aeeac735443fd91e39d
parent 3348243b7ba94e83dfb9d675fa0e701f97d3e220
Author: Sergey M? <dstftw@gmail.com>
Date:   Tue,  8 Dec 2015 21:16:58 +0600

[nbc] Add another theplatform pattern

Diffstat:
Myoutube_dl/extractor/nbc.py | 1+
1 file changed, 1 insertion(+), 0 deletions(-)

diff --git a/youtube_dl/extractor/nbc.py b/youtube_dl/extractor/nbc.py @@ -63,6 +63,7 @@ class NBCIE(InfoExtractor): theplatform_url = unescapeHTML(lowercase_escape(self._html_search_regex( [ r'(?:class="video-player video-player-full" data-mpx-url|class="player" src)="(.*?)"', + r'<iframe[^>]+src="((?:https?:)?//player\.theplatform\.com/[^"]+)"', r'"embedURL"\s*:\s*"([^"]+)"' ], webpage, 'theplatform url').replace('_no_endcard', '').replace('\\/', '/')))