[cspan] Pass Referer header with format's video URL (#26032) (closes …

…#25729)
This commit is contained in:
=?UTF-8?q?Roman=20Ber=C3=A1nek?= 2021-02-26 14:38:55 +01:00 committed by Laura Liberda
parent 31a2706650
commit a321724c88

View file

@ -165,6 +165,8 @@ class CSpanIE(InfoExtractor):
formats = self._extract_m3u8_formats(
path, video_id, 'mp4', entry_protocol='m3u8_native',
m3u8_id='hls') if determine_ext(path) == 'm3u8' else [{'url': path, }]
for f in formats:
f.setdefault('http_headers', {})['Referer'] = url
self._sort_formats(formats)
entries.append({
'id': '%s_%d' % (video_id, partnum + 1),