aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJaime Marquínez Ferrándiz <jaime.marquinez.ferrandiz@gmail.com>2014-07-17 22:29:03 +0200
committerJaime Marquínez Ferrándiz <jaime.marquinez.ferrandiz@gmail.com>2014-07-17 22:29:03 +0200
commit66149e3f2b57d110045862bfbc19b3efbb50d152 (patch)
treec18d6eac1adb91b28e58df7f6d9d2b506fb25a45
parent1e179c752890e660041e7a0c5d02ea93d373daee (diff)
downloadyoutube-dl-66149e3f2b57d110045862bfbc19b3efbb50d152.tar.xz
[npo] Fix the json extraction (fixes #3282)
The comment in the javascript file is not always the same.
-rw-r--r--youtube_dl/extractor/npo.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/youtube_dl/extractor/npo.py b/youtube_dl/extractor/npo.py
index fbcbe1f40..12e85a716 100644
--- a/youtube_dl/extractor/npo.py
+++ b/youtube_dl/extractor/npo.py
@@ -32,7 +32,7 @@ class NPOIE(InfoExtractor):
'http://e.omroep.nl/metadata/aflevering/%s' % video_id,
video_id,
# We have to remove the javascript callback
- transform_source=lambda j: re.sub(r'parseMetadata\((.*?)\);\n//epc', r'\1', j)
+ transform_source=lambda j: re.sub(r'parseMetadata\((.*?)\);\n//.*$', r'\1', j)
)
token_page = self._download_webpage(
'http://ida.omroep.nl/npoplayer/i.js',