Hi kronos, On Thu, Dec 2, 2010 at 5:47 PM, <[email protected]> wrote: > sstol = > request.queue(queue=[request.create("/usr/local/www/rcr/mp3/announce/SOD.mp3"), > request.create("/usr/local/www/rcr/radio/current/mp3/announce/opener/opener-sstol.mp3"), > request.create("/usr/local/www/rcr/radio/current/mp3/sstol/today/today-sstol-32.pls"), > request.create("/usr/local/www/rcr/mp3/announce/CLOSER.mp3"), > request.create("/usr/local/www/rcr/radio/current/mp3/sstol/today/sstol-mp3-end-32.pls")])
Here you're mixing MP3 and PLS requests. The queue() takes media requests (files that can be decoded immediately as audio) so only the MP3 will be valid. > 1. Ensure that each item in the queue is infallible (perhaps by using > 'playlist.safe') We don't have a notion of fallibility for a request. It only makes sense if you plan to repeat the request (otherwise it fails when you stop repeating) and if you repeat it it's not just a request but a source, e.g. single(request). > scmp3 = fallback(track_sensitive=false,[sstol,security]) > scmp3 = crossfade(start_next=0.7, fade_in=0.2, fade_out=0.2, sstol) > [...] > 2.The last two lines: is it possible to combine crossfade with fallback? > a. If so, what would the syntax look like? (All attempts have barfed > so far.) The answer is yes, you can combine them. But I believe those two lines are outdated -- I've explained the problem in an other thread (scmp3 is defined and then re-defined/masked without being used). Please keep issues in a single thread to avoid such problems. > 3. In the output section, the ogg source is labelled 'icogg' > a. Does it need to have the 'mount=/icogg.ogg' or just > 'mount=/icogg'? No, the name of the source in the script has nothing to do with the mount name. In fact you often have an output without a name in the script. Have fun, -- David ------------------------------------------------------------------------------ What happens now with your Lotus Notes apps - do you make another costly upgrade, or settle for being marooned without product support? Time to move off Lotus Notes and onto the cloud with Force.com, apps are easier to build, use, and manage than apps on traditional platforms. Sign up for the Lotus Notes Migration Kit to learn more. http://p.sf.net/sfu/salesforce-d2d _______________________________________________ Savonet-users mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/savonet-users
