I would really appreciate some help with this portion of the script below. AS scripted, first the first bumper song loads in queue but does not play, I have tried to use DeckA.Play; and Encoders.Startall; to no avail. Any advice?
Next, The live voice mic segment as written corrupts the previous bumper song played when manually loaded.How can I get PAL to go from the recorded bumper song to the live segment and then back to another bumper song. Any help is appreciated.
PAL.Loop := true;
Cat['intro opening seg bumper'].QueueTop(smRandom, NoRules); PAL.WaitForTime('xx:00:01'); ActivePlayer.FadeToNext;
Queue.AddURL('mic://?&driver=DS&packets=10&packettime=10&display=Live Talk Opening Segment',ipTop);
PAL.WaitForTime('xx:00:45'); ActivePlayer.FadeToNext;
Cat['outro opening seg bumper'].QueueTop(smRandom, NoRules); PAL.WaitForTime('xx:04:30'); ActivePlayer.FadeToNext;
|