2011/8/9 Shane Jonet <[email protected]>: > Hi all, Hi!
> I'm sure this has been talked about, but I can't figure out how to make a > one-time request to play a song at a specific time! I can force a request > with Telnet, but I'm not sure of how to make it actually fulfill the request > at a given time. I can use switch, sure, but I only want the specific file > to play once. I'm looking to play something this evening in a couple hours, > so if anyone knows quickly, that'd be great! You have to use a track_sensitive=false option. For the source for the file, you may use any of the request-based sources, though I would suggest a request.queue that you feed at the time you want the song to be played. For instance this: r = request.queue(id="r") s = (...) s = fallback(track_sensitive=false, [r, s]) This will cut the song currently being played by s as soon as a song is ready in r and play the song from r. Romain ------------------------------------------------------------------------------ Get a FREE DOWNLOAD! and learn more about uberSVN rich system, user administration capabilities and model configuration. Take the hassle out of deploying and managing Subversion and the tools developers use with it. http://p.sf.net/sfu/wandisco-dev2dev _______________________________________________ Savonet-users mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/savonet-users
