From 2aa6ae75a698021215115e606b927b404be9107c Mon Sep 17 00:00:00 2001 From: Pavol Rusnak Date: Thu, 5 May 2011 01:40:54 +0200 Subject: [PATCH 1/2] fix show source link --- brmd/brmd.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/brmd/brmd.pl b/brmd/brmd.pl index 889eafc..623bc40 100755 --- a/brmd/brmd.pl +++ b/brmd/brmd.pl @@ -224,7 +224,7 @@ sub web_index {
  • brmstatus ($sts) status page | javascript code | plaintext file | picture
  • brmvideo ($str) $r_link
  • -

    (view source)

    +

    (view source)

    EOT ); From a1108f27d33f527433c02cbd9d79ecd7382c7969 Mon Sep 17 00:00:00 2001 From: Nephirus Date: Sun, 8 May 2011 23:31:51 +0200 Subject: [PATCH 2/2] Added AlphaSign notification of streaming status --- brmd/brmd.pl | 1 + 1 file changed, 1 insertion(+) diff --git a/brmd/brmd.pl b/brmd/brmd.pl index 623bc40..9a35716 100755 --- a/brmd/brmd.pl +++ b/brmd/brmd.pl @@ -98,6 +98,7 @@ sub record_str { sub stream_switch { my ($s) = @_; system('ssh brmstream@brmvid "echo '.($s?'START':'STOP').' >/tmp/brmstream"'); + system('~/alphasign/'.($s?'on':'off').'_air.py'); } sub record_start { stream_switch(1); }