X-Git-Url: http://git.bitcoin.ninja/index.cgi?a=blobdiff_plain;f=youtube_dl%2Fextractor%2Fnoco.py;h=a53e27b274eaa21ac15a1dc5077001d520832696;hb=1793d71db61acc9f6cceefbc63d7de2b558b7582;hp=5674ee2a4fd6945e167ea400d5d2d3be2a323865;hpb=01e4b1ee14a3e9dedcb6a156c6eaf1603a8a0592;p=youtube-dl diff --git a/youtube_dl/extractor/noco.py b/youtube_dl/extractor/noco.py index 5674ee2a4..a53e27b27 100644 --- a/youtube_dl/extractor/noco.py +++ b/youtube_dl/extractor/noco.py @@ -17,7 +17,6 @@ from ..utils import ( int_or_none, float_or_none, parse_iso8601, - unified_strdate, ) @@ -167,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) @@ -192,7 +195,7 @@ class NocoIE(InfoExtractor): if episode_number: title += ' #' + compat_str(episode_number) if episode: - title += ' - ' + episode + title += ' - ' + compat_str(episode) description = show.get('show_resume') or show.get('family_resume')