Hello!

I need help in following issue. I need to insert a small playlist at the
beginning of each hour. Playlist is generated automatically by the cron.

This is important part of script.

def playlist_watch(uri)
  pl = playlist.once(reload_mode="watch", uri)
  merge_tracks(usmart_crossfade(pl))
end

radio = switch([({ 6h-11h },  mrn_radio),
                ({ 11h-18h }, day_radio),
                ({ 18h-6h },  evn_radio)])

radio = fallback(
track_sensitive=false,
transitions=[to_news, to_music],
[switch([({00m00s-00m03s}, playlist_watch("#{playlists}/news.pls")),
             ({30m00s-30m03s}, playlist_watch("#{playlists}/news30.pls")),
             ({45m00s-45m03s}, playlist_watch("#{playlists}/weather.pls"))
           ]),
    radio, default])

radio = normalize(usmart_crossfade(start_next=4., width=3.5, radio))

The first track in the playlist, which is reloaded with playlist.once,
played twice! I need to khow why and how can I resolve this!

--
WBR, Sergey.
------------------------------------------------------------------------------
October Webinars: Code for Performance
Free Intel webinars can help you accelerate application performance.
Explore tips for MPI, OpenMP, advanced profiling, and more. Get the most from 
the latest Intel processors and coprocessors. See abstracts and register >
http://pubads.g.doubleclick.net/gampad/clk?id=60134791&iu=/4140/ostg.clktrk
_______________________________________________
Savonet-users mailing list
Savonet-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/savonet-users

Reply via email to