We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Examples of using WPF-MediaKit headless - without GUI, e.g. as a service.
static void Main(string[] args) { _player = new MediaUriPlayer(); _player.EnsureThread(ApartmentState.MTA); _player.Dispatcher.BeginInvoke(() => { _player.Source = new Uri("[MyUri]"); // mp3, wma, m3u, ... _player.Play(); }); Console.ReadKey(); }