Skip to content

Commit

Permalink
[orf] Stream URL only reachable via HTTPS (ytdl-org#29012)
Browse files Browse the repository at this point in the history
  • Loading branch information
Lukas0907 committed May 15, 2021
1 parent a726009 commit 05edfd2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion youtube_dl/extractor/orf.py
Original file line number Diff line number Diff line change
Expand Up @@ -182,7 +182,7 @@ def _real_extract(self, url):
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,
Expand Down

0 comments on commit 05edfd2

Please sign in to comment.