Skip to content

Commit

Permalink
bw/bundles/loudness-viewer: fix stream urls
Browse files Browse the repository at this point in the history
  • Loading branch information
Kunsi committed Mar 29, 2024
1 parent d947618 commit 83bcc91
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions bundlewrap/bundles/loudness-viewer/metadata.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,9 @@ def gather_from_other_node(metadata):
rnode = repo.get_node(n)
streams = {}
x = 0
for idx, (name, stream) in enumerate(sorted(rnode.metadata.get('loudness-rendering').items())):
for idx, name in enumerate(sorted(rnode.metadata.get('loudness-rendering'))):
streams[f'stream_{name}'] = {
'command': f'/usr/local/bin/mpv.sh stream_{name} {stream}',
'command': f'/usr/local/bin/mpv.sh stream_{name} rtmp://ingest2.c3voc.de/relay/{name}_loudness',
'height': 540,
'width': 480,
'x': x,
Expand Down

0 comments on commit 83bcc91

Please sign in to comment.