mirror of
https://github.com/ytdl-org/youtube-dl.git
synced 2025-08-22 22:34:01 -07:00
Removed f-strings to support Python 2.X.
This commit is contained in:
parent
57c6251e35
commit
865f1c4fbf
1 changed files with 4 additions and 4 deletions
|
@ -130,10 +130,10 @@ class SenateISVPIE(InfoExtractor):
|
||||||
|
|
||||||
# the possible locations that the video could be contained at.
|
# the possible locations that the video could be contained at.
|
||||||
possible_manifest_urls = [
|
possible_manifest_urls = [
|
||||||
f'https://www-senate-gov-media-srs.akamaized.net/hls/live/{stream_id}/{committee}/{filename}/master.m3u8',
|
'https://www-senate-gov-media-srs.akamaized.net/hls/live/%d/%s/%s/master.m3u8' % (stream_id, committee, filename),
|
||||||
f'https://www-senate-gov-msl3archive.akamaized.net/{msl3}/{filename}_1/master.m3u8',
|
'https://www-senate-gov-msl3archive.akamaized.net/%s/%s_1/master.m3u8' % (msl3, filename),
|
||||||
f'{stream_domain}/i/{filename}_1@{stream_number}/master.m3u8',
|
'{stream_domain}/i/%s_1@%d/master.m3u8' % (filename, stream_number),
|
||||||
f'https://ussenate-f.akamaihd.net/i/{video_id}',
|
'https://ussenate-f.akamaihd.net/i/%s' % video_id,
|
||||||
]
|
]
|
||||||
|
|
||||||
# we iterate through the possible locations until we find a hit, that is when formats is filled.
|
# we iterate through the possible locations until we find a hit, that is when formats is filled.
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue