Soenneker.YouTube.Client
4.0.2428
Prefix Reserved
See the version list below for details.
dotnet add package Soenneker.YouTube.Client --version 4.0.2428
NuGet\Install-Package Soenneker.YouTube.Client -Version 4.0.2428
<PackageReference Include="Soenneker.YouTube.Client" Version="4.0.2428" />
<PackageVersion Include="Soenneker.YouTube.Client" Version="4.0.2428" />
<PackageReference Include="Soenneker.YouTube.Client" />
paket add Soenneker.YouTube.Client --version 4.0.2428
#r "nuget: Soenneker.YouTube.Client, 4.0.2428"
#:package Soenneker.YouTube.Client@4.0.2428
#addin nuget:?package=Soenneker.YouTube.Client&version=4.0.2428
#tool nuget:?package=Soenneker.YouTube.Client&version=4.0.2428
Soenneker.YouTube.Client
Provides a lazily created YoutubeExplode.YoutubeClient for reading public YouTube metadata and media streams.
Install
dotnet add package Soenneker.YouTube.Client
Registration
using Soenneker.YouTube.Client.Registrars;
services.AddYouTubeClientUtilAsSingleton();
Scoped registration is also available:
services.AddYouTubeClientUtilAsScoped();
Each provider owns its cached HTTP client. Scoped providers use independent cache entries, so disposing one scope does not remove another scope's client.
Usage
public sealed class VideoReader
{
private readonly IYouTubeClientUtil _youtube;
public VideoReader(IYouTubeClientUtil youtube)
{
_youtube = youtube;
}
public async Task PrintTitle(string videoUrl, CancellationToken cancellationToken)
{
YoutubeClient client = await _youtube.Get(cancellationToken);
var video = await client.Videos.GetAsync(videoUrl, cancellationToken);
Console.WriteLine($"{video.Title} — {video.Author.ChannelTitle}");
}
}
The package does not use the official YouTube Data API and does not require an API key. Behavior follows YouTubeExplode and can be affected by changes to YouTube's public site.
| Product | Versions Compatible and additional computed target framework versions. |
|---|---|
| .NET | net10.0 is compatible. net10.0-android was computed. net10.0-browser was computed. net10.0-ios was computed. net10.0-maccatalyst was computed. net10.0-macos was computed. net10.0-tvos was computed. net10.0-windows was computed. |
-
net10.0
- Soenneker.Utils.HttpClientCache (>= 4.0.2054)
- YoutubeExplode (>= 6.6.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 |
|---|---|---|
| 4.0.2437 | 0 | 9/9/2026 |
| 4.0.2436 | 35 | 9/8/2026 |
| 4.0.2435 | 45 | 9/8/2026 |
| 4.0.2434 | 48 | 9/7/2026 |
| 4.0.2433 | 53 | 9/7/2026 |
| 4.0.2432 | 54 | 9/5/2026 |
| 4.0.2431 | 51 | 9/4/2026 |
| 4.0.2430 | 55 | 9/4/2026 |
| 4.0.2429 | 52 | 9/4/2026 |
| 4.0.2428 | 56 | 9/4/2026 |
| 4.0.2426 | 67 | 9/3/2026 |
| 4.0.2425 | 85 | 9/1/2026 |
| 4.0.2424 | 87 | 8/31/2026 |
| 4.0.2423 | 83 | 8/31/2026 |
| 4.0.2422 | 87 | 8/31/2026 |
| 4.0.2421 | 91 | 8/31/2026 |
| 4.0.2420 | 90 | 8/31/2026 |
| 4.0.2419 | 88 | 8/31/2026 |
| 4.0.2418 | 90 | 8/30/2026 |
| 4.0.2417 | 97 | 8/30/2026 |
Updated Soenneker.Utils.HttpClientCache to 4.0.2054