diff options
| author | Sergey M․ <dstftw@gmail.com> | 2019-01-13 03:57:31 +0700 | 
|---|---|---|
| committer | Sergey M․ <dstftw@gmail.com> | 2019-01-13 03:59:38 +0700 | 
| commit | d65f6e734b5c00acbb396f4569907f7957e1cbef (patch) | |
| tree | 67d4dc023ac2201c5cf3d9a1c69d8567acefc58b | |
| parent | ed8db0a25c93f5611dfae81ee8f15cbc177bd0ab (diff) | |
[bitchute] Check formats (#18833)
| -rw-r--r-- | youtube_dl/extractor/bitchute.py | 1 | 
1 files changed, 1 insertions, 0 deletions
| diff --git a/youtube_dl/extractor/bitchute.py b/youtube_dl/extractor/bitchute.py index aa034355a..4f39424f5 100644 --- a/youtube_dl/extractor/bitchute.py +++ b/youtube_dl/extractor/bitchute.py @@ -55,6 +55,7 @@ class BitChuteIE(InfoExtractor):          formats = [              {'url': format_url}              for format_url in orderedSet(format_urls)] +        self._check_formats(formats, video_id)          self._sort_formats(formats)          description = self._html_search_regex( | 
