Browse Source

[vine] Zero rate videos is perfectly valid (#5389)

totalwebcasting
Sergey M․ 10 years ago
parent
commit
6ac41a4ef5
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      youtube_dl/extractor/vine.py

+ 1
- 1
youtube_dl/extractor/vine.py View File

@ -37,7 +37,7 @@ class VineIE(InfoExtractor):
'vcodec': f['format'],
'quality': f['rate'],
'url': f['videoUrl'],
} for f in data['videoUrls'] if f.get('rate')]
} for f in data['videoUrls']]
self._sort_formats(formats)


Loading…
Cancel
Save