projects
/
youtube-dl
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
788be33
)
[noco] Skip invalid timestamps (closes #5826)
author
Yen Chi Hsuan
<yan12125@gmail.com>
Mon, 8 Jun 2015 09:39:55 +0000
(17:39 +0800)
committer
Yen Chi Hsuan
<yan12125@gmail.com>
Mon, 8 Jun 2015 09:39:55 +0000
(17:39 +0800)
youtube_dl/extractor/noco.py
patch
|
blob
|
history
diff --git
a/youtube_dl/extractor/noco.py
b/youtube_dl/extractor/noco.py
index 664dc81d47ce7af613636022f4e540dffd67f8b6..5bbd2dcf66294f5f0e21b6aae000f9ddecd5c051 100644
(file)
--- a/
youtube_dl/extractor/noco.py
+++ b/
youtube_dl/extractor/noco.py
@@
-166,6
+166,10
@@
class NocoIE(InfoExtractor):
self._sort_formats(formats)
timestamp = parse_iso8601(show.get('online_date_start_utc'), ' ')
+
+ if timestamp is not None and timestamp < 0:
+ timestamp = None
+
uploader = show.get('partner_name')
uploader_id = show.get('partner_key')
duration = float_or_none(show.get('duration_ms'), 1000)