Thanks for the help/feedback. This is an unusual situation because I am
driving the outgoing calls with an automated web site which initiates the
call sequence by dumping the Test.call file directly into
..var/spool/asterisk/outgoing over a LAN, (which makes it difficult to use
contexts). I thought SOXMIX would work for sound file concatenation, but for
some reason SOXMIX wasn't included in the Red Hat distribution, even though
SOX was... Oh well:( Any ideas out there for plan B?
Regards,
Charlie Hatchette
>Message: 1
>Date: Tue, 20 Jan 2004 00:51:04 -0600 (CST)
>From: Brian West <brian@bkw.org>
>To: asterisk-users@lists.digium.com
>Subject: Re: [Asterisk-Users] PLAYBACK multiple files
>Reply-To: asterisk-users@lists.digium.com
>Also you should never call an application directly with an call file as
>the CDR info won't get updated correctly.... Link your app to an
extension
>then call it like that.
>bkw
>On Mon, 19 Jan 2004, Marcin Kuzmicki wrote:
>> > Re: PLAYBACK multiple files
>>
>> > I'm trying to devise a way to playback more than one file per
call when
I>> > copy my file 'Test.call' into ..
var/spool/asterisk/outgoing
>> >
>> > Channel: Zap/1/put_your_phone_number_here
>> > Application: Playback
>> > Data: demo-thanks + a-second-file + a-third-file
>> >
>> > Is there some way to do this?
>>
>> Create context in extensions.conf something like
>>
>> [myplayback]
>> exten => s,1,Playback(frist_file)
>> exten => s,2,Playback(second_file)
>> ...etc
>>
>> and then
>> use
>> Context, Extension, and priority to use it
>> ie.
>> Channel: Zap/1/put_your_phone_number_here
>> Context: myplayback
>> Extension: s
>> Priority: 1
>>
> all above is just a concept not ready copy&paste solution.
>>
>> regards
>> m.