youtube-dl

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

commit 1508da30c28f2047a6d9d1dcebd529fa6ea56f15
parent eb703e538035b0ebdc076be0ba982aac97d9ef08
Author: Sergey M․ <dstftw@gmail.com>
Date:   Wed,  7 Jun 2017 21:53:13 +0700

[streamango] Skip download for test (closes #13292)

Diffstat:
Myoutube_dl/extractor/streamango.py | 6+++++-
1 file changed, 5 insertions(+), 1 deletion(-)

diff --git a/youtube_dl/extractor/streamango.py b/youtube_dl/extractor/streamango.py @@ -22,12 +22,16 @@ class StreamangoIE(InfoExtractor): 'title': '20170315_150006.mp4', } }, { + # no og:title 'url': 'https://streamango.com/embed/foqebrpftarclpob/asdf_asd_2_mp4', 'info_dict': { 'id': 'foqebrpftarclpob', 'ext': 'mp4', 'title': 'foqebrpftarclpob', - } + }, + 'params': { + 'skip_download': True, + }, }, { 'url': 'https://streamango.com/embed/clapasobsptpkdfe/20170315_150006_mp4', 'only_matching': True,