Browse Source

[cspan] Unescape path (Closes #8365)

totalwebcasting
Sergey M․ 9 years ago
parent
commit
68a0ea15b4
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      youtube_dl/extractor/cspan.py

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

@ -113,7 +113,7 @@ class CSpanIE(InfoExtractor):
'tbr': int_or_none(get_text_attr(quality, 'bitrate')),
})
if not formats:
path = get_text_attr(f, 'path')
path = unescapeHTML(get_text_attr(f, 'path'))
if not path:
continue
formats = self._extract_m3u8_formats(


Loading…
Cancel
Save