diff options
author | Sergey M․ <dstftw@gmail.com> | 2017-04-16 21:52:07 +0700 |
---|---|---|
committer | Sergey M․ <dstftw@gmail.com> | 2017-04-16 21:52:07 +0700 |
commit | 5935ef3c5d9c70c412a0c49f03feb3d0da8dedc6 (patch) | |
tree | 5e27bea2d6e8febd05fce8031d05f7b9d98b7810 /youtube_dl | |
parent | 1183e22c7e107938a64a3f4d920999ea00871d86 (diff) |
[itv] Lower preference for rtmp formats (closes #12759)
Diffstat (limited to 'youtube_dl')
-rw-r--r-- | youtube_dl/extractor/itv.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/youtube_dl/extractor/itv.py b/youtube_dl/extractor/itv.py index 021c6b278..7f24f14ce 100644 --- a/youtube_dl/extractor/itv.py +++ b/youtube_dl/extractor/itv.py @@ -122,6 +122,8 @@ class ITVIE(InfoExtractor): 'play_path': play_path, 'tbr': tbr, 'ext': 'flv', + # rtmp formats are now stop downloading at ~72MiB + 'preference': -10, }) ios_playlist_url = params.get('data-video-playlist') |