Your solution isn't gonna work, `fall()` is called once and for all when 
creating the source. Instead, you should use a transition:
```
backup_playlist = audio_to_stereo(id="backup_playlist", myplaylist) 

def transition(old,new) = 
  if source.id(new) == "backup_playlist" then
    system("./scripts/pushover.py")
  end

  sequence([old,new])
end

radio = fallback(track_sensitive=false,
         transitions=[transition,transition,transition],
         [strip_blank(max_blank=120.,liveset), backup_playlist])
```

Gonna close here, feel free to follow-up on savonet-users@lists.sourceforge.net 

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/savonet/liquidsoap/issues/528#issuecomment-401735577
------------------------------------------------------------------------------
Check out the vibrant tech community on one of the world's most
engaging tech sites, Slashdot.org! http://sdm.link/slashdot
_______________________________________________
Savonet-users mailing list
Savonet-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/savonet-users

Reply via email to