浏览代码

[n-tv.de] Fix extraction (closes #10331)

Yen Chi Hsuan 9 年之前
父节点
当前提交
b82232036a
共有 2 个文件被更改,包括 8 次插入3 次删除
  1. 3 0
      ChangeLog
  2. 5 3
      youtube_dl/extractor/ntvde.py

+ 3 - 0
ChangeLog

@@ -3,6 +3,9 @@ version <unreleased>
 Core
 * Fix js_to_json(): correct octal or hexadecimal number detection
 
+Extractors
+* [n-tv.de] Fix extraction (#10331)
+
 
 version 2016.08.19
 

+ 5 - 3
youtube_dl/extractor/ntvde.py

@@ -1,6 +1,8 @@
-# encoding: utf-8
+# coding: utf-8
 from __future__ import unicode_literals
 
+import re
+
 from .common import InfoExtractor
 from ..compat import compat_urlparse
 from ..utils import (
@@ -40,8 +42,8 @@ class NTVDeIE(InfoExtractor):
         timestamp = int_or_none(info.get('publishedDateAsUnixTimeStamp'))
         vdata = self._parse_json(self._search_regex(
             r'(?s)\$\(\s*"\#player"\s*\)\s*\.data\(\s*"player",\s*(\{.*?\})\);',
-            webpage, 'player data'),
-            video_id, transform_source=js_to_json)
+            webpage, 'player data'), video_id,
+            transform_source=lambda s: js_to_json(re.sub(r'advertising:\s*{[^}]+},', '', s)))
         duration = parse_duration(vdata.get('duration'))
 
         formats = []