We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7e722ec commit 71e885eCopy full SHA for 71e885e
src/streamlink/plugins/btv.py
@@ -61,7 +61,7 @@ def _get_streams(self):
61
log.error("The content is not available in your region")
62
return
63
64
- return {"live": HLSStream(self.session, stream_url)}
+ return HLSStream.parse_variant_playlist(self.session, stream_url)
65
66
67
__plugin__ = BTV
tests/plugins/test_btv.py
@@ -6,7 +6,7 @@ class TestPluginCanHandleUrlBTV(PluginCanHandleUrl):
6
7
8
should_match = [
9
- "http://btvplus.bg/live",
10
- "http://btvplus.bg/live/",
11
- "http://www.btvplus.bg/live/",
+ "https://btvplus.bg/live",
+ "https://btvplus.bg/live/",
+ "https://www.btvplus.bg/live/",
12
]
0 commit comments