diff options
author | Lukas Anzinger <[email protected]> | 2021-05-16 14:54:15 +0200 |
---|---|---|
committer | GitHub <[email protected]> | 2021-05-16 19:54:15 +0700 |
commit | 2202cef0e4551293913e0be06b72b4cffccae0aa (patch) | |
tree | b416add84eab91a3f85729343490b1b43e232cf7 | |
parent | a7260099873acc6dc7d76cafad2f6b139087afd0 (diff) | |
download | youtube-dl-2202cef0e4551293913e0be06b72b4cffccae0aa.tar.gz youtube-dl-2202cef0e4551293913e0be06b72b4cffccae0aa.zip |
[orf:radio] Switch download URLs to HTTPS (closes #29012) (#29046)
-rw-r--r-- | youtube_dl/extractor/orf.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/youtube_dl/extractor/orf.py b/youtube_dl/extractor/orf.py index 700ce448c..3fadbcbea 100644 --- a/youtube_dl/extractor/orf.py +++ b/youtube_dl/extractor/orf.py @@ -182,7 +182,7 @@ class ORFRadioIE(InfoExtractor): duration = end - start if end and start else None entries.append({ 'id': loop_stream_id.replace('.mp3', ''), - 'url': 'http://loopstream01.apa.at/?channel=%s&id=%s' % (self._LOOP_STATION, loop_stream_id), + 'url': 'https://loopstream01.apa.at/?channel=%s&id=%s' % (self._LOOP_STATION, loop_stream_id), 'title': title, 'description': clean_html(data.get('subtitle')), 'duration': duration, |