mirror of
https://gitlab.com/dstftw/youtube-dl.git
synced 2020-11-16 09:42:26 +00:00
[breakcom] Process only play purpose media formats (Closes #5164)
This commit is contained in:
parent
cc08b11d16
commit
dd7831fe94
|
@ -41,7 +41,7 @@ class BreakIE(InfoExtractor):
|
|||
'tbr': media['bitRate'],
|
||||
'width': media['width'],
|
||||
'height': media['height'],
|
||||
} for media in info['media']]
|
||||
} for media in info['media'] if media.get('mediaPurpose') == 'play']
|
||||
|
||||
if not formats:
|
||||
formats.append({
|
||||
|
|
Loading…
Reference in a new issue