youtube-dl

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

commit 5d0f84d32cc038dd71673987cb6efaa85e953474
parent ee223abb88263bdda2d92c4b2139d1dca60ba3ae
Author: Sergey M․ <dstftw@gmail.com>
Date:   Sat,  7 Nov 2015 06:23:00 +0600

[beeg] Skip empty URLs (Closes #7392)

Diffstat:
Myoutube_dl/extractor/beeg.py | 2++
1 file changed, 2 insertions(+), 0 deletions(-)

diff --git a/youtube_dl/extractor/beeg.py b/youtube_dl/extractor/beeg.py @@ -33,6 +33,8 @@ class BeegIE(InfoExtractor): formats = [] for format_id, video_url in video.items(): + if not video_url: + continue height = self._search_regex( r'^(\d+)[pP]$', format_id, 'height', default=None) if not height: