mirror of
https://github.com/ytdl-org/youtube-dl.git
synced 2024-11-22 10:11:52 +00:00
[extractor/common] Improve jwplayer formats extraction (closes #13379)
This commit is contained in:
parent
7dd5415cd0
commit
0a268c6e11
1 changed files with 2 additions and 0 deletions
|
@ -2328,6 +2328,8 @@ class InfoExtractor(object):
|
||||||
urls = []
|
urls = []
|
||||||
formats = []
|
formats = []
|
||||||
for source in jwplayer_sources_data:
|
for source in jwplayer_sources_data:
|
||||||
|
if not isinstance(source, dict):
|
||||||
|
continue
|
||||||
source_url = self._proto_relative_url(source.get('file'))
|
source_url = self._proto_relative_url(source.get('file'))
|
||||||
if not source_url:
|
if not source_url:
|
||||||
continue
|
continue
|
||||||
|
|
Loading…
Reference in a new issue