youtube-dl

Another place where youtube-dl lives on
git clone git://git.oshgnacknak.de/youtube-dl.git
Log | Files | Refs | README | LICENSE

commit 8a370aedace161f97b7bff572275f3e8dd59da2e
parent 24ca0e9c0b217c99a852682d9aa1357cd380eb06
Author: Yen Chi Hsuan <yan12125@gmail.com>
Date:   Fri,  4 Mar 2016 13:38:45 +0800

[leeco] format_id should be strings

Diffstat:
Myoutube_dl/extractor/leeco.py | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/youtube_dl/extractor/leeco.py b/youtube_dl/extractor/leeco.py @@ -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')),