diff options
author | Sergey M․ <dstftw@gmail.com> | 2015-12-06 23:47:10 +0600 |
---|---|---|
committer | Sergey M․ <dstftw@gmail.com> | 2015-12-06 23:47:10 +0600 |
commit | fd8e559c3a9861121d5d89f9095c8d45aa1d9dcd (patch) | |
tree | b24adcb2cae0bd0ce50af9bb3241ae03788a16ad /youtube_dl | |
parent | 222e11d4ae7d424cd71d9ba87762ce169c0a8c87 (diff) |
[beeg] Switch to api v4 (Closes #7774)
Diffstat (limited to 'youtube_dl')
-rw-r--r-- | youtube_dl/extractor/beeg.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/youtube_dl/extractor/beeg.py b/youtube_dl/extractor/beeg.py index e63c2ac00..d151d38c9 100644 --- a/youtube_dl/extractor/beeg.py +++ b/youtube_dl/extractor/beeg.py @@ -34,7 +34,7 @@ class BeegIE(InfoExtractor): video_id = self._match_id(url) video = self._download_json( - 'http://beeg.com/api/v3/video/%s' % video_id, video_id) + 'http://beeg.com/api/v4/video/%s' % video_id, video_id) def decrypt_key(key): # Reverse engineered from http://static.beeg.com/cpl/1067.js |