about summary refs log tree commit diff
diff options
context:
space:
mode:
authorRemita Amine <remitamine@gmail.com>2017-12-12 18:04:05 +0100
committerRemita Amine <remitamine@gmail.com>2017-12-12 18:04:05 +0100
commit6b2d8c91823c8f4c5dcda42cf174ab5468c44661 (patch)
treef198deffd28e0f7aa69e28755d86244059806660
parente6b8803d599df4de3c115e4de4ef192a1e10c749 (diff)
downloadyoutube-dl-6b2d8c91823c8f4c5dcda42cf174ab5468c44661.tar.gz
youtube-dl-6b2d8c91823c8f4c5dcda42cf174ab5468c44661.tar.xz
youtube-dl-6b2d8c91823c8f4c5dcda42cf174ab5468c44661.zip
[bbc.co.uk] fix extraction for 320k m3u8 streams
broken since 197224b7a4e37a6581bf1a0da18d0f67ea61a476
-rw-r--r--youtube_dl/extractor/bbc.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/youtube_dl/extractor/bbc.py b/youtube_dl/extractor/bbc.py
index 5525f7c9b..8b20c03d6 100644
--- a/youtube_dl/extractor/bbc.py
+++ b/youtube_dl/extractor/bbc.py
@@ -386,7 +386,7 @@ class BBCCoUkIE(InfoExtractor):
                             m3u8_id=format_id, fatal=False))
                         if re.search(self._USP_RE, href):
                             usp_formats = self._extract_m3u8_formats(
-                                re.sub(self._USP_RE, r'/\1\.ism/\1\.m3u8', href),
+                                re.sub(self._USP_RE, r'/\1.ism/\1.m3u8', href),
                                 programme_id, ext='mp4', entry_protocol='m3u8_native',
                                 m3u8_id=format_id, fatal=False)
                             for f in usp_formats: