Problems with Playing IVR gsm

Okay I am trying to create a custom IVR message from the sounds in the sound directory.

I can hear sounds when going to directory and I can hear other prompts for voice mail so I think the decoding is working.

I never heare this: Executing Playback(“Zap/1-1”, “welcome.gsm”) in new stack

But I will hear this Executing Playback(“Zap/1-1”, “vm-goodbye”) in new stack.

Any Ideas???

here is the context:

[ivr-2]
include => ivr-2-custom
include => ext-findmefollow
include => ext-local
include => app-directory
exten => h,1,Hangup
exten => s,1,Set(LOOPCOUNT=0)
exten => s,n,Set(__DIR-CONTEXT=default)
exten => s,n,Answer
exten => s,n,Wait(1)
exten => s,n(begin),Set(TIMEOUT(digit)=3)
exten => s,n,Set(TIMEOUT(response)=10)
exten => s,n,Playback(welcome.gsm)
exten => hang,1,Playback(vm-goodbye)
exten => hang,n,Hangup
exten => 1,1,Goto(ext-queues,1,1)
exten => 2,1,Goto(ext-local,801,1)
exten => 3,1,Goto(ext-local,803,1)
exten => 4,1,Goto(ext-meetme,1000,1)
exten => i,1,Playback(invalid)
exten => i,n,Goto(loop,1)
exten => t,1,Goto(loop,1)
exten => loop,1,Set(LOOPCOUNT=$[${LOOPCOUNT} + 1])
exten => loop,n,GotoIf($[${LOOPCOUNT} > 2]?hang,1)
exten => loop,n,Goto(ivr-2,s,begin)
exten => fax,1,Goto(ext-fax,in_fax,1)

Here is the out put of the command line:

– Starting simple switch on ‘Zap/1-1’
– Executing Set(“Zap/1-1”, “FROM_DID=s”) in new stack
– Executing Set(“Zap/1-1”, “FAX_RX=disabled”) in new stack
– Executing Macro(“Zap/1-1”, “privacy-mgr|”) in new stack
– Executing Set(“Zap/1-1”, “KEEPCID=5414714939”) in new stack
– Executing GotoIf(“Zap/1-1”, “0?CIDTEST2:CIDTEST1”) in new stack
– Goto (macro-privacy-mgr,s,3)
– Executing Set(“Zap/1-1”, “TESTCID=5414714881.000000”) in new stack
– Executing Goto(“Zap/1-1”, “TESTRESULT”) in new stack
– Goto (macro-privacy-mgr,s,6)
– Executing GotoIf(“Zap/1-1”, “0?CLEARCID:PRIVMGR”) in new stack
– Goto (macro-privacy-mgr,s,8)
– Executing PrivacyManager(“Zap/1-1”, “”) in new stack
– CallerID Present: Skipping
– Executing SetCallerPres(“Zap/1-1”, “allowed_passed_screen”) in new stack
– Executing Goto(“Zap/1-1”, “ivr-2|s|1”) in new stack
– Goto (ivr-2,s,1)
– Executing Set(“Zap/1-1”, “LOOPCOUNT=0”) in new stack
– Executing Set(“Zap/1-1”, “__DIR-CONTEXT=default”) in new stack
– Executing Answer(“Zap/1-1”, “”) in new stack
– Executing Wait(“Zap/1-1”, “1”) in new stack
– Executing Set(“Zap/1-1”, “TIMEOUT(digit)=3”) in new stack
– Digit timeout set to 3
– Executing Set(“Zap/1-1”, “TIMEOUT(response)=10”) in new stack
– Response timeout set to 10
– Executing Playback(“Zap/1-1”, “welcome.gsm”) in new stack
– Timeout on Zap/1-1
== CDR updated on Zap/1-1
– Executing Goto(“Zap/1-1”, “loop|1”) in new stack
– Goto (ivr-2,loop,1)
– Executing Set(“Zap/1-1”, “LOOPCOUNT=1”) in new stack
– Executing GotoIf(“Zap/1-1”, “0?hang|1”) in new stack
– Executing Goto(“Zap/1-1”, “ivr-2|s|begin”) in new stack
– Goto (ivr-2,s,5)
– Executing Set(“Zap/1-1”, “TIMEOUT(digit)=3”) in new stack
– Digit timeout set to 3
– Executing Set(“Zap/1-1”, “TIMEOUT(response)=10”) in new stack
– Response timeout set to 10
– Executing Playback(“Zap/1-1”, “welcome.gsm”) in new stack
– Timeout on Zap/1-1
== CDR updated on Zap/1-1
– Executing Goto(“Zap/1-1”, “loop|1”) in new stack
– Goto (ivr-2,loop,1)
– Executing Set(“Zap/1-1”, “LOOPCOUNT=2”) in new stack
– Executing GotoIf(“Zap/1-1”, “0?hang|1”) in new stack
– Executing Goto(“Zap/1-1”, “ivr-2|s|begin”) in new stack
– Goto (ivr-2,s,5)
– Executing Set(“Zap/1-1”, “TIMEOUT(digit)=3”) in new stack
– Digit timeout set to 3
– Executing Set(“Zap/1-1”, “TIMEOUT(response)=10”) in new stack
– Response timeout set to 10
– Executing Playback(“Zap/1-1”, “welcome.gsm”) in new stack
– Timeout on Zap/1-1
== CDR updated on Zap/1-1
– Executing Goto(“Zap/1-1”, “loop|1”) in new stack
– Goto (ivr-2,loop,1)
– Executing Set(“Zap/1-1”, “LOOPCOUNT=3”) in new stack
– Executing GotoIf(“Zap/1-1”, “1?hang|1”) in new stack
– Goto (ivr-2,hang,1)
– Executing Playback(“Zap/1-1”, “vm-goodbye”) in new stack
– Playing ‘vm-goodbye’ (language ‘en’)
– Executing Hangup(“Zap/1-1”, “”) in new stack
== Spawn extension (ivr-2, hang, 2) exited non-zero on ‘Zap/1-1’
– Executing Hangup(“Zap/1-1”, “”) in new stack
== Spawn extension (ivr-2, h, 1) exited non-zero on ‘Zap/1-1’
– Hungup ‘Zap/1-1’

Update

Okay it seems like it is a transcodeing problem.

I exchange the welcome with the vm-goodby and it plays.

Any ideas where to start with that issue

Arg I am a retard. I removed the .gsm and the messages play. HAHAHAH