naudio / NAudio

Audio and MIDI library for .NET
MIT License
5.57k stars 1.1k forks source link

Stuck needing .NET 4.7 #531

Open BobDenny opened 5 years ago

BobDenny commented 5 years ago

I have a package that includes reading from Twitter (and RSS) and producing high quality Morse Code up to very high speeds (ASIO for high speed). It also includes a separate Morse Code keyer program whose audio must be super clean with envelope control for input to transmitters for radio Morse. It’s all working with Microsoft.DIrectX.Sound and BlueWave for ASIO. It includes waveform synthesis with envelopes not just playing sound files. These libraries, as well as (apparently) SlimDX and SharpDX, are abandonware. Your library looks great and on the surface it seems to support the things I need.

But I’m stuck. Twitter recently began requiring TLS 1.2 for their OAuth authentication. This is not available in .NET 3.5 so my app dies on trying to capture Twitter news feeds to make Morse Code. The info on your library says it targets .NET 3.5. Is there any way I could make it work within a .NET 4.7 app? I don’t want to start down the road of rewriting all of the audio processing only to learn that it’s a dead end for me.

BobDenny commented 5 years ago

PS I don’t mean to sound ungrateful or unappreciative for the work and skill put into this library. It's excellent. I wish I had known about it back when I first built the tools and applications

markheath commented 5 years ago

NAudio can be used in a .NET 4.7 application with no problems All that means is that it still supports all the way back to .NET 3.5

BobDenny commented 5 years ago

Oh! that's excellent. I didn't know, and this is great news. Thanks very much!!