diff options
author | Sergey M․ <dstftw@gmail.com> | 2016-01-14 19:57:56 +0600 |
---|---|---|
committer | Sergey M․ <dstftw@gmail.com> | 2016-01-14 19:57:56 +0600 |
commit | abb893e6e45b0b0c6ec0e3a1d29dbd1746cbee96 (patch) | |
tree | 9ab821f8d53e3b3c484ffca01ac37df66a818206 /youtube_dl | |
parent | 4511c1976d0a06394a000333a020a4d3668072fe (diff) |
[beeg] Update API URL
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 d0174b818..34c2a756f 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/v5/video/%s' % video_id, video_id) + 'https://api.beeg.com/api/v5/video/%s' % video_id, video_id) def split(o, e): def cut(s, x): |