From 3524cc25cad5bb9c717a695c796a24ce3fe2d6f3 Mon Sep 17 00:00:00 2001 From: Philipp Hagemeister Date: Thu, 28 Aug 2014 10:55:32 +0200 Subject: [sportdeutschland] Add support for more plain videos --- youtube_dl/extractor/common.py | 3 +++ 1 file changed, 3 insertions(+) (limited to 'youtube_dl/extractor/common.py') diff --git a/youtube_dl/extractor/common.py b/youtube_dl/extractor/common.py index fc3e02663..cc0a77e1e 100644 --- a/youtube_dl/extractor/common.py +++ b/youtube_dl/extractor/common.py @@ -664,6 +664,9 @@ class InfoExtractor(object): elif line.startswith('#') or not line.strip(): continue else: + if last_info is none: + formats.append({'url': line}) + continue tbr = int_or_none(last_info.get('BANDWIDTH'), scale=1000) f = { -- cgit v1.2.3