Displaying 2 results from an estimated 2 matches for "frist_fil".
Did you mean:
frist_file
2004 Jan 19
2
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?
Charlie Hatchette
chatchette@generalcare.com
2004 Jan 20
1
PSTN Gateway
...hannel: 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 con...