A family of Microsoft presentation graphics products that offer tools for creating presentations and adding graphic effects like multimedia objects and special effects with text.
While you can't set that as a default, you can insert all the audio files, then run this macro. It doesn't remove the original click animation, but it adds an autoplay animation before the click:
Sub AutoPlayAudio()
Dim oSlide As Slide
Dim oShape As Shape
Dim oEffect As Effect
For Each oSlide In ActivePresentation.Slides
For Each oShape In oSlide.Shapes
If oShape.Type = msoMedia Then
If oShape.MediaType = ppMediaTypeSound Then
Set oEffect = oSlide.TimeLine.MainSequence.AddEffect(oShape, msoAnimEffectMediaPlay, , msoAnimTriggerWithPrevious)
oEffect.MoveTo 1
End If
End If
Next oShape
Next oSlide
End Sub