diff options
author | Remita Amine <remitamine@gmail.com> | 2016-08-01 16:25:41 +0100 |
---|---|---|
committer | Remita Amine <remitamine@gmail.com> | 2016-08-01 16:25:41 +0100 |
commit | a70e45f80a398fccbb757dd2e166d15f16ffb160 (patch) | |
tree | 8b9d9f87014910ae9089634ee2e0d9002a6f7c2c | |
parent | 697655a7c0c1469dd7474714652025961e82bd69 (diff) |
[limelight] keep videos marked as previewStream
https://github.com/rg3/youtube-dl/commit/e382b953f00982a2085d3e0b1b6fb4d2a0f2db7e#commitcomment-18472915
-rw-r--r-- | youtube_dl/extractor/limelight.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/youtube_dl/extractor/limelight.py b/youtube_dl/extractor/limelight.py index 0d7abbaa8..efe1437e0 100644 --- a/youtube_dl/extractor/limelight.py +++ b/youtube_dl/extractor/limelight.py @@ -37,7 +37,7 @@ class LimelightBaseIE(InfoExtractor): for stream in streams: stream_url = stream.get('url') - if not stream_url or stream.get('previewStream') or stream.get('drmProtected'): + if not stream_url or stream.get('drmProtected'): continue ext = determine_ext(stream_url) if ext == 'f4m': @@ -177,7 +177,7 @@ class LimelightMediaIE(LimelightBaseIE): 'subtitles': 'mincount:9', }, 'params': { - # m3u8 download + # rtmp download 'skip_download': True, }, }, { |