diff options
| author | Jaime Marquínez Ferrándiz <jaime.marquinez.ferrandiz@gmail.com> | 2013-06-22 12:32:27 +0200 | 
|---|---|---|
| committer | Jaime Marquínez Ferrándiz <jaime.marquinez.ferrandiz@gmail.com> | 2013-06-22 12:32:27 +0200 | 
| commit | 953dd93a481dc879033e92a8f1547782af04d6ff (patch) | |
| tree | 6fca5ac858a7f13d9383e640a465aff25dbc41b8 | |
| parent | 31eead52e764569fc95ffaf56b25850fa260988b (diff) | |
YoutubePlaylistIE: don't look into entry['content']['src'], accruing to the docs this can return live stream urls
| -rwxr-xr-x | youtube_dl/InfoExtractors.py | 5 | 
1 files changed, 0 insertions, 5 deletions
| diff --git a/youtube_dl/InfoExtractors.py b/youtube_dl/InfoExtractors.py index 418c23f74..f5006d23e 100755 --- a/youtube_dl/InfoExtractors.py +++ b/youtube_dl/InfoExtractors.py @@ -1610,11 +1610,6 @@ class YoutubePlaylistIE(InfoExtractor):                  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 | 
