YouTubeStreamsExtractor 1.0.2

There is a newer version of this package available.
See the version list below for details.
dotnet add package YouTubeStreamsExtractor --version 1.0.2
NuGet\Install-Package YouTubeStreamsExtractor -Version 1.0.2
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="YouTubeStreamsExtractor" Version="1.0.2" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add YouTubeStreamsExtractor --version 1.0.2
#r "nuget: YouTubeStreamsExtractor, 1.0.2"
#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 YouTubeStreamsExtractor as a Cake Addin
#addin nuget:?package=YouTubeStreamsExtractor&version=1.0.2

// Install YouTubeStreamsExtractor as a Cake Tool
#tool nuget:?package=YouTubeStreamsExtractor&version=1.0.2

YouTubeStreamsExtractor

YouTubeStreamsExtractor is a library for extracting url for downloading audio and video streams from YouTube videos. It's based on yt-dlp

Install

Install YouTubeStreamsExtractor and one of the javascript engines or implement IJavaScriptEngine interface.

Version Package Description
Nuget YouTubeStreamsExtractor .NET 6 Library
Nuget YouTubeStreamsExtractor.JsEngine.JavaScriptEngineSwitcher javascript engine, .NET 6 Library
Nuget YouTubeStreamsExtractor.JsEngine.AndroidWebView javascript engine, .NET 6 Android Library

Usage

Get streams with playable urls

using YouTubeStreamsExtractor;
using YouTubeStreamsExtractor.JsEngine.JavaScriptEngineSwitcher;

IJavaScriptEngine jsEngine = new JavaScriptJurassicEngine();
var youTubeStreams = new YouTubeStreams(jsEngine);

Find audio with highest bitrate

var streams = await youTubeStreams.GetAllStreamsAsync(videoUrl, true);
var streamSelector = new StreamSelector();
var audio = streamSelector.SelectBestAudio(streams);

var downloadUrl = audio.PlayableUrl.Url;

If you only need a URL for one stream, use this method. It doesn't need to prepare the url for each stream, which makes it faster.

var streams = await youTubeStreams.GetAllStreamsAsync(url, false);
var audio = streamSelector.SelectBestAudio(streams2);
await audio.PlayableUrl.PrepareAsync(audio.RawUrl, youTubeStreams.Decryptor);

var downloadUrl = audio.PlayableUrl.Url;

YouTubeStreamsExtractor.JsEngine.JavaScriptEngineSwitcher

Uses JavaScript Engine Switcher with Jurassic and NiL.JS engines to execute js code.
This is the simplest implementation but sometimes it might not be able to execute js code to descramble 'n' parameter, this will result in throttled download speed.

YouTubeStreamsExtractor.JsEngine.AndroidWebView

Uses WebView to execute js code.

Product Compatible and additional computed target framework versions.
.NET net6.0 is compatible.  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. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
  • net6.0

    • No dependencies.

NuGet packages (2)

Showing the top 2 NuGet packages that depend on YouTubeStreamsExtractor:

Package Downloads
YouTubeStreamsExtractor.JsEngine.JavaScriptEngineSwitcher

Library for extracting url for downloading audio and video streams from YouTube videos

YouTubeStreamsExtractor.JsEngine.AndroidWebView

Library for extracting url for downloading audio and video streams from YouTube videos

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
1.0.4 146 1/5/2024
1.0.3 166 8/18/2023
1.0.2 441 9/14/2022
1.0.1 421 9/9/2022
1.0.0 405 9/9/2022