Browse Source

[rtlxl] Strip additional dot from video URL (#4115)

totalwebcasting
Naglis Jonaitis 10 years ago
parent
commit
4698b14b76
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      youtube_dl/extractor/rtlnl.py

+ 1
- 1
youtube_dl/extractor/rtlnl.py View File

@ -44,7 +44,7 @@ class RtlXlIE(InfoExtractor):
formats = self._extract_m3u8_formats(m3u8_url, uuid, ext='mp4')
video_urlpart = videopath.split('/flash/')[1][:-4]
video_urlpart = videopath.split('/flash/')[1][:-5]
PG_URL_TEMPLATE = 'http://pg.us.rtl.nl/rtlxl/network/%s/progressive/%s.mp4'
formats.extend([


Loading…
Cancel
Save