diff options
author | AndroKev <AndroKev@users.noreply.github.com> | 2015-10-08 09:56:39 +0200 |
---|---|---|
committer | AndroKev <AndroKev@users.noreply.github.com> | 2015-10-08 09:56:39 +0200 |
commit | db7a28eccb743db4e546a12fb78ae5dc40ef44d9 (patch) | |
tree | 136e58f20bd19c9f2d7644b0f46ff8ac6a4dc7e4 /youtube_dl | |
parent | 181f814e572790d9d79ab3172fc791d274913b26 (diff) |
FIX: nowtv
now the download works for me
thx to http://board.gulli.com/thread/1251646-videos-von-webseiten-runterladen-sammelthread-alle-fragen-hier-rein-/?p=14980081#post14980081
Diffstat (limited to 'youtube_dl')
-rw-r--r-- | youtube_dl/extractor/nowtv.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/youtube_dl/extractor/nowtv.py b/youtube_dl/extractor/nowtv.py index c8257719f..b0bdffc4e 100644 --- a/youtube_dl/extractor/nowtv.py +++ b/youtube_dl/extractor/nowtv.py @@ -167,8 +167,8 @@ class NowTVIE(InfoExtractor): 'app': app, 'play_path': 'mp4:%s' % play_path, 'ext': 'flv', - 'page_url': url, - 'player_url': 'http://rtl-now.rtl.de/includes/nc_player.swf', + 'page_url': 'http://rtlnow.rtl.de', + 'player_url': 'http://cdn.static-fra.de/now/vodplayer.swf', 'tbr': int_or_none(item.get('bitrate')), }) self._sort_formats(formats) |