Yen Chi Hsuan
8 years ago
No known key found for this signature in database
GPG Key ID: 3FDDD575826C5C30
2 changed files with
8 additions and
3 deletions
-
ChangeLog
-
youtube_dl/extractor/ntvde.py
|
|
@ -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 |
|
|
|
|
|
|
|
|
|
@ -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 = [] |
|
|
|