StreamRipper 2.0.7
There is a newer version of this package available.
See the version list below for details.
See the version list below for details.
dotnet add package StreamRipper --version 2.0.7
NuGet\Install-Package StreamRipper -Version 2.0.7
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="StreamRipper" Version="2.0.7" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add StreamRipper --version 2.0.7
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: StreamRipper, 2.0.7"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install StreamRipper as a Cake Addin #addin nuget:?package=StreamRipper&version=2.0.7 // Install StreamRipper as a Cake Tool #tool nuget:?package=StreamRipper&version=2.0.7
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
Stream-ripper
Stream Ripper library, convert an online radio to your music library!
var streamRipper = new StreamRipperImpl(new Uri("https://rj1.rjstream.com/"), logger);
// The recommended way is to have an async event handlers
streamRipper.SongChangedEventHandlers += async (_, arg) =>
{
// Create filename from SongInfo
var filename = $"{arg.SongInfo.SongMetadata.Artist}-{arg.SongInfo.SongMetadata.Title}";
// Save the stream to file
await arg.SongInfo.Stream.ToFileStream($@"\Music\ripped\{filename}.mp3");
};
// Async start
streamRipper.Start();
// To Stop
// streamRipper.Dispose();
Events:
OnMetadataChanged
: will be invoked when metadata changesOnStreamUpdate
: will be invoked when newbyte[]
gets downloadedOnStreamStarted
: will be invoked when stream startsOnStreamEnded
: will be invoked when stream endsOnSongChanged
: will be invoked when new SongInfo is ready
Notes:
- All event handler will be automatically wrapped as async event handler by
PlugginManager
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net5.0 was computed. net5.0-windows was computed. net6.0 was computed. net6.0-android was computed. net6.0-ios was computed. net6.0-maccatalyst was computed. net6.0-macos was computed. net6.0-tvos was computed. net6.0-windows was computed. net7.0 was computed. net7.0-android was computed. net7.0-ios was computed. net7.0-maccatalyst was computed. net7.0-macos was computed. net7.0-tvos was computed. net7.0-windows was computed. net8.0 was computed. net8.0-android was computed. net8.0-browser was computed. net8.0-ios was computed. net8.0-maccatalyst was computed. net8.0-macos was computed. net8.0-tvos was computed. net8.0-windows was computed. |
.NET Core | netcoreapp2.0 is compatible. netcoreapp2.1 was computed. netcoreapp2.2 was computed. netcoreapp3.0 was computed. netcoreapp3.1 was computed. |
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
-
.NETCoreApp 2.0
- Microsoft.Extensions.Logging.Abstractions (>= 2.0.2)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
Version | Downloads | Last updated |
---|---|---|
2.1.9 | 684 | 10/1/2020 |
2.1.8 | 521 | 5/10/2020 |
2.1.7 | 450 | 4/22/2020 |
2.1.6 | 464 | 4/21/2020 |
2.1.5 | 471 | 4/19/2020 |
2.1.4 | 465 | 4/19/2020 |
2.1.3 | 699 | 4/4/2020 |
2.1.2 | 468 | 4/4/2020 |
2.1.1 | 504 | 4/4/2020 |
2.1.0 | 501 | 4/4/2020 |
2.0.8 | 481 | 4/2/2020 |
2.0.7 | 546 | 3/29/2020 |
2.0.6 | 585 | 3/29/2020 |
2.0.5 | 474 | 3/29/2020 |
2.0.4 | 615 | 2/22/2020 |
2.0.3 | 592 | 2/22/2020 |
2.0.2 | 599 | 1/11/2020 |
2.0.1 | 729 | 1/7/2019 |
2.0.0 | 873 | 8/5/2018 |
1.2.5 | 856 | 8/3/2018 |
1.2.4 | 826 | 8/3/2018 |
1.2.3 | 872 | 8/3/2018 |
1.2.2 | 848 | 8/3/2018 |
1.2.1 | 846 | 8/3/2018 |
1.1.1 | 849 | 8/2/2018 |
1.1.0 | 857 | 8/2/2018 |
1.0.0 | 807 | 7/31/2018 |
Used a cancellation token instead of boolean