mirror of
https://github.com/ytdl-org/youtube-dl
synced 2024-11-05 01:48:01 +09:00
commit
420658e6cb
@ -15,6 +15,7 @@ from ..utils import (
|
|||||||
determine_ext,
|
determine_ext,
|
||||||
ExtractorError,
|
ExtractorError,
|
||||||
parse_iso8601,
|
parse_iso8601,
|
||||||
|
int_or_none,
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
||||||
@ -134,7 +135,7 @@ class LetvIE(InfoExtractor):
|
|||||||
}
|
}
|
||||||
|
|
||||||
if format_id[-1:] == 'p':
|
if format_id[-1:] == 'p':
|
||||||
url_info_dict['height'] = format_id[:-1]
|
url_info_dict['height'] = int_or_none(format_id[:-1])
|
||||||
|
|
||||||
urls.append(url_info_dict)
|
urls.append(url_info_dict)
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user