YouTubeStreamsExtractor.JsEngine.JavaScriptEngineSwitcher
1.0.0
See the version list below for details.
dotnet add package YouTubeStreamsExtractor.JsEngine.JavaScriptEngineSwitcher --version 1.0.0
NuGet\Install-Package YouTubeStreamsExtractor.JsEngine.JavaScriptEngineSwitcher -Version 1.0.0
<PackageReference Include="YouTubeStreamsExtractor.JsEngine.JavaScriptEngineSwitcher" Version="1.0.0" />
paket add YouTubeStreamsExtractor.JsEngine.JavaScriptEngineSwitcher --version 1.0.0
#r "nuget: YouTubeStreamsExtractor.JsEngine.JavaScriptEngineSwitcher, 1.0.0"
// Install YouTubeStreamsExtractor.JsEngine.JavaScriptEngineSwitcher as a Cake Addin #addin nuget:?package=YouTubeStreamsExtractor.JsEngine.JavaScriptEngineSwitcher&version=1.0.0 // Install YouTubeStreamsExtractor.JsEngine.JavaScriptEngineSwitcher as a Cake Tool #tool nuget:?package=YouTubeStreamsExtractor.JsEngine.JavaScriptEngineSwitcher&version=1.0.0
YouTubeStreamsExtractor
YouTubeStreamsExtractor is a library for extracting audio and video streams from YouTube videos. It's based on yt-dlp
Install2
Install YouTubeStreamsExtractor and one of the javascript engines or implement IJavaScriptEngine
interface.
Version | Package | Description |
---|---|---|
YouTubeStreamsExtractor | .NET 6 Library | |
YouTubeStreamsExtractor.JsEngine.JavaScriptEngineSwitcher | javascript engine, .NET 6 Library | |
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 | Versions 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. |
-
net6.0
- JavaScriptEngineSwitcher.Core (>= 3.19.0)
- JavaScriptEngineSwitcher.Jurassic (>= 3.19.0)
- JavaScriptEngineSwitcher.NiL (>= 3.20.0)
- YouTubeStreamsExtractor (>= 1.0.0)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.