소스 검색

[noco] Skip invalid timestamps (closes #5826)

Yen Chi Hsuan 10 년 전
부모
커밋
01e21b89ee
1개의 변경된 파일4개의 추가작업 그리고 0개의 파일을 삭제
  1. 4 0
      youtube_dl/extractor/noco.py

+ 4 - 0
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)