Asterisk v1.2beta - 1-2 Seconds of silence on first Playback

I am using Asterisk v1.2beta with a context like this:

[quote=“extensions.conf”]exten => s,1,Answer
exten => s,2,Wait(1) ; if I set this to 2 or 3 it seems to have no direct impact
exten => s,3,Playback(valid_sound_file)
exten => s,4,Hangup

In every case the first 1-2 seconds of the sound file is not played. Any other ideas on this point? Something with 1.2beta?

I could pad the sound files with silence at the beginning, but of course not optimal.

humm
try

exten => s,1,Answer
exten => s,2,Wait(1) ; if I set this to 2 or 3 it seems to have no direct impact
exten => s,3,Answer()
exten => s,4,Playback(valid_sound_file)
exten => s,5,Hangup

it shouldn’t affect since playback as a internal answer… but we never know

Well, it seemed to solve the problem… I now get the full message. Strange.