Browse Source

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

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

2
youtube_dl/extractor/vine.py

@ -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