mirror of
https://github.com/ytdl-org/youtube-dl.git
synced 2024-10-31 22:55:26 +00:00
[n-tv.de] Fix extraction (closes #10331)
This commit is contained in:
parent
e4659b4547
commit
b82232036a
2 changed files with 8 additions and 3 deletions
|
@ -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 = []
|
||||
|
|
Loading…
Reference in a new issue