Просмотр исходного кода

[npo] Fix the json extraction (fixes #3282)

The comment in the javascript file is not always the same.
Jaime Marquínez Ferrándiz 11 лет назад
Родитель
Сommit
66149e3f2b
1 измененных файлов с 1 добавлено и 1 удалено
  1. 1 1
      youtube_dl/extractor/npo.py

+ 1 - 1
youtube_dl/extractor/npo.py

@@ -32,7 +32,7 @@ class NPOIE(InfoExtractor):
             'http://e.omroep.nl/metadata/aflevering/%s' % video_id,
             'http://e.omroep.nl/metadata/aflevering/%s' % video_id,
             video_id,
             video_id,
             # We have to remove the javascript callback
             # 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(
         token_page = self._download_webpage(
             'http://ida.omroep.nl/npoplayer/i.js',
             'http://ida.omroep.nl/npoplayer/i.js',