Hello.
I was wondering, is it possible in c# to capture an audio played by another program (winamp, media player).
and if yes, can someone please point the direction where to start ? =]
Thank You !
Loading
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Niradhip ChakrabortyPosted Jun 20, 2008, 5:04 AM
You can do it in asp.net using c# code.u can play the songs from ur ASP.NET page using Windows Media Player.
just add a dll of Windows Media player in ur project through the Com Component.After adding that u can add one button and on the click event
write the following code:
protected void btnSubmit_Click(object sender, EventArgs e)
{
WMPLib.WindowsMediaPlayerClass wm = new WMPLib.WindowsMediaPlayerClass();
}