[orf:radio] Switch download URLs to HTTPS (closes #29012) (#29046)
authorLukas Anzinger <lukas@lukasanzinger.at>
Sun, 16 May 2021 12:54:15 +0000 (14:54 +0200)
committerGitHub <noreply@github.com>
Sun, 16 May 2021 12:54:15 +0000 (19:54 +0700)
youtube_dl/extractor/orf.py

index 700ce448c4b8faa925aa1dae179f030acaa0b4f6..3fadbcbead6c901b4b99203dd11c58d1c68df97e 100644 (file)
@@ -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,