mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-05 10:42:37 +01:00
YoutubePlaylistIE: don't look into entry['content']['src'], accruing to the docs this can return live stream urls
This commit is contained in:
parent
31eead52e7
commit
953dd93a48
@ -1610,11 +1610,6 @@ def _real_extract(self, url):
|
||||
index = entry['yt$position']['$t']
|
||||
if 'media$group' in entry and 'media$player' in entry['media$group']:
|
||||
videos.append((index, entry['media$group']['media$player']['url']))
|
||||
# Using this field can cause problems:
|
||||
# https://github.com/rg3/youtube-dl/issues/886
|
||||
elif 'content' in entry:
|
||||
videos.append((index, entry['content']['src']))
|
||||
|
||||
|
||||
if len(response['feed']['entry']) < self._MAX_RESULTS:
|
||||
break
|
||||
|
Loading…
Reference in New Issue
Block a user