youtube-dl

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

commit b15c44cd36831f175e9dd4081b82beb8075790b3
parent f93ded98522cc1272a8d2210738937132292afc9
Author: Sergey M․ <dstftw@gmail.com>
Date:   Thu,  5 Nov 2015 02:51:30 +0600

[periscope] Add support for videos with broadcast_id (Closes #7359)

Diffstat:
Myoutube_dl/extractor/periscope.py | 5+++--
1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/youtube_dl/extractor/periscope.py b/youtube_dl/extractor/periscope.py @@ -27,9 +27,10 @@ class PeriscopeIE(InfoExtractor): 'skip': 'Expires in 24 hours', } - def _call_api(self, method, token): + def _call_api(self, method, value): + attribute = 'token' if len(value) > 13 else 'broadcast_id' return self._download_json( - 'https://api.periscope.tv/api/v2/%s?token=%s' % (method, token), token) + 'https://api.periscope.tv/api/v2/%s?%s=%s' % (method, attribute, value), value) def _real_extract(self, url): token = self._match_id(url)