logo

youtube-dl

[mirror] Download/Watch videos from video hostersgit clone https://hacktivis.me/git/mirror/youtube-dl.git
commit: 2202cef0e4551293913e0be06b72b4cffccae0aa
parent a7260099873acc6dc7d76cafad2f6b139087afd0
Author: Lukas Anzinger <lukas@lukasanzinger.at>
Date:   Sun, 16 May 2021 14:54:15 +0200

[orf:radio] Switch download URLs to HTTPS (closes #29012) (#29046)


Diffstat:

Myoutube_dl/extractor/orf.py2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 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,