Skip to content

Commit

Permalink
Fixed: RTV NH Live stream (Fixes #1782).
Browse files Browse the repository at this point in the history
  • Loading branch information
basrieter committed Apr 5, 2024
1 parent f38fd78 commit bd4524f
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 8 deletions.
9 changes: 3 additions & 6 deletions changelog.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[B]Retrospect v5.7.9 - Changelog - 2024-04-01[/B]
[B]Retrospect v5.7.x - Changelog - 2024-xx-xx[/B]

Minor updates for SVT and TV4 channels.
t.b.d.

[B]Framework related[/B]
_None_
Expand All @@ -9,7 +9,4 @@ _None_
_None_

[B]Channel related[/B]
* Fixed: SVT Nyheter & Categories.
* Fixed: Folder icons for TV4 Play (Fixes #1774).
* Fixed: TV4 Play artwork did not work with HEAD requests.
* Fixed: SVT subtitles were selecting the incorrect ones (Fixes #1777).
* Fixed: RTV NH Live stream (Fixes #1782).
9 changes: 7 additions & 2 deletions channels/channel.regionalnl/at5/chn_at5.py
Original file line number Diff line number Diff line change
Expand Up @@ -289,8 +289,13 @@ def update_live_stream(self, item):
"""

Logger.debug("Updating the live stream")
url = "https://rrr.sz.xlcdn.com/?account=atvijf" \
"&file=live&type=live&service=wowza&protocol=https&output=playlist.m3u8"

if self.channelCode == "rtvnh":
url = "https://takeoff.jetstre.am/?account=nhnieuws" \
"&file=live&type=live&service=wowza&protocol=http&output=playlist.m3u8s"
else:
url = "https://rrr.sz.xlcdn.com/?account=atvijf" \
"&file=live&type=live&service=wowza&protocol=https&output=playlist.m3u8"

item.complete = \
M3u8.update_part_with_m3u8_streams(item, url, channel=self)
Expand Down

0 comments on commit bd4524f

Please sign in to comment.