Merge branch 'tvc' of https://github.com/hlintala/youtube-dl into hlintala-tvc
[youtube-dl] / youtube_dl / extractor / noco.py
index 098c564bd1805f9541446a406264b608fb8bbbed..5bbd2dcf66294f5f0e21b6aae000f9ddecd5c051 100644 (file)
@@ -17,7 +17,6 @@ from ..utils import (
     int_or_none,
     float_or_none,
     parse_iso8601,
-    unified_strdate,
 )
 
 
@@ -51,7 +50,7 @@ class NocoIE(InfoExtractor):
                 'id': '12610',
                 'ext': 'mp4',
                 'title': 'The Guild #1 - Wake-Up Call',
-                'description': '',
+                'timestamp': 1403863200,
                 'upload_date': '20140627',
                 'uploader': 'LBL42',
                 'uploader_id': 'LBL',
@@ -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)