Compare commits

..

No commits in common. "74e5aa6902cfab52cedf6b40955b9d6a38c96867" and "02bfd8ffdca55abbaf64ff68a42168656b844399" have entirely different histories.

2 changed files with 8 additions and 13 deletions

View File

@ -1,5 +1,4 @@
from .common import InfoExtractor
from ..networking import HEADRequest
from ..utils import (
float_or_none,
int_or_none,
@ -101,12 +100,8 @@ class RedCDNLivxIE(InfoExtractor):
ism_doc, ism_urlh = ism_res
formats, _ = self._parse_ism_formats_and_subtitles(ism_doc, ism_urlh.url, 'ss')
nvr_urlh = self._request_webpage(
HEADRequest(livx_mode('nvr')), video_id, 'Follow flv file redirect', fatal=False,
expected_status=lambda _: True)
if nvr_urlh and nvr_urlh.getcode() == 200:
formats.append({
'url': nvr_urlh.url,
'url': livx_mode('nvr'),
'ext': 'flv',
'format_id': 'direct-0',
'preference': -1, # might be slow

View File

@ -168,9 +168,9 @@ class SejmIE(InfoExtractor):
return
file = f'https:{file}' if file.startswith('//') else file
if not legacy_file:
file = update_url_query(file, {'startTime': start_time})
update_url_query(file, {'startTime': start_time})
if stop_time is not None:
file = update_url_query(file, {'stopTime': stop_time})
update_url_query(file, {'stopTime': stop_time})
stream_id = self._search_regex(r'/o2/sejm/([^/]+)/[^./]+\.livx', file, 'stream id')
common_info = {
'url': file,