Browse Source

[leeco] format_id should be strings

totalwebcasting
Yen Chi Hsuan 9 years ago
parent
commit
8a370aedac
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      youtube_dl/extractor/leeco.py

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

@ -338,7 +338,7 @@ class LetvCloudIE(InfoExtractor):
formats.append({
'url': url,
'ext': determine_ext(decoded_url),
'format_id': int_or_none(play_url.get('vtype')),
'format_id': str_or_none(play_url.get('vtype')),
'format_note': str_or_none(play_url.get('definition')),
'width': int_or_none(play_url.get('vwidth')),
'height': int_or_none(play_url.get('vheight')),


Loading…
Cancel
Save