I try to play a WAV file using :
Dim player As New Media.SoundPlayer()
player.SoundLocation="a valid file path"
player.Play()
It worked fine until the WAV files I get to work with have changed to 48KHz (maybe other attributes too)
Now it doesnt play the aound file. No exception is thrown , but no sound is heard.
The previous WAV files can still be played , only the new ones cannot.
What tools can I use to work with this alien format?
Can I convert the stream to the other format during runtime ?
Can I use the SoundPlayer object to achive this?
thanks