diff options
author | Sergey M․ <dstftw@gmail.com> | 2015-12-03 23:23:36 +0600 |
---|---|---|
committer | Sergey M․ <dstftw@gmail.com> | 2015-12-03 23:23:36 +0600 |
commit | af93fcfa0549bdfe26c39adecbb1bcc98a9345af (patch) | |
tree | ba6052f9cca806b31cb35dc308a7d8dccb0c5362 /youtube_dl/extractor/beeg.py | |
parent | 62d231c00493c329a78a30b15a336f131fc392f9 (diff) |
[beeg] Update API URL (Closes #7736)
Diffstat (limited to 'youtube_dl/extractor/beeg.py')
-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 61bc2f744..1ee4a8b05 100644 --- a/youtube_dl/extractor/beeg.py +++ b/youtube_dl/extractor/beeg.py @@ -29,7 +29,7 @@ class BeegIE(InfoExtractor): video_id = self._match_id(url) video = self._download_json( - 'http://beeg.com/api/v1/video/%s' % video_id, video_id) + 'http://beeg.com/api/v3/video/%s' % video_id, video_id) formats = [] for format_id, video_url in video.items(): |