We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hello,
I made an F# version of the code in https://github.com/naudio/NAudio/blob/master/Docs/PlayAudioFromUrl.md so I can easily listen to a certain radio-station on commandline. It might be of interest for documentation purposes:
open NAudio.MediaFoundation open NAudio.Wasapi open NAudio.Wave open System.Threading let url = "https://ice1.somafm.com/groovesalad-128-aac" printfn "Starting Groove Salad Playback" let start () = use mf = new MediaFoundationReader(url) use wo = new WasapiOut() wo.Init(mf) wo.Play() while true do Thread.Sleep 1000 start()
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Hello,
I made an F# version of the code in https://github.com/naudio/NAudio/blob/master/Docs/PlayAudioFromUrl.md so I can easily listen to a certain radio-station on commandline. It might be of interest for documentation purposes:
The text was updated successfully, but these errors were encountered: