From b4c4e118974aac3116f24fffaafcb29fdcf65782 Mon Sep 17 00:00:00 2001 From: Tore Sinding Bekkedal Date: Wed, 28 Feb 2024 21:15:33 +0100 Subject: [PATCH] temporary hotfix: play frikanalenloop bc. graphics are broken --- packages/playout/playout | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/packages/playout/playout b/packages/playout/playout index edd7cc6f..b76f6ad5 100755 --- a/packages/playout/playout +++ b/packages/playout/playout @@ -280,7 +280,8 @@ class Graphic(PlannedItem): if self.has_been_prepared: await CurrentPlayer.issue(f'PLAY {self.layer}') else: - await CurrentPlayer.issue(f'PLAY {self.layer} [HTML] "{self.url}"') + #await CurrentPlayer.issue(f'PLAY {self.layer} [HTML] "{self.url}"') + await CurrentPlayer.issue(f'PLAY {self.layer} filler/frikanalenloop loop 0') # If we have time for it, do a nice and steady fade to black # two seconds before the next programme, just like the old @@ -299,7 +300,8 @@ class Graphic(PlannedItem): async def prepare(self): try: - await CurrentPlayer.issue(f'LOADBG {self.layer} [HTML] "{self.url}"') + #await CurrentPlayer.issue(f'LOADBG {self.layer} [HTML] "{self.url}"') + await CurrentPlayer.issue(f'LOADBG {self.layer} filler/FrikanalenLoop loop 0') self.has_been_prepared = True except asyncio.CancelledError: pass