I wonder that MediaElement (from WPF) components are capable of playing and buffering mp3 streams.
I need play mp3 memory stream(not mp3 file) using MediaElement of WPF ,would you please tell me how to do it .
thank a lot
I wonder that MediaElement (from WPF) components are capable of playing and buffering mp3 streams.
I need play mp3 memory stream(not mp3 file) using MediaElement of WPF ,would you please tell me how to do it .
thank a lot
MemoryStream s;
...
MediaElement m = new MediaElement();
m.SetSource(s);