YoutubeExtractor 0.4.0

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

// Install YoutubeExtractor as a Cake Tool
#tool nuget:?package=YoutubeExtractor&version=0.4.0

YoutubeExtractor is a library to extract the download link from YouTube videos, download them and/or extract their audio track.

Product Compatible and additional computed target framework versions.
.NET Framework net is compatible. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

This package has no dependencies.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories (3)

Showing the top 3 popular GitHub repositories that depend on YoutubeExtractor:

Repository Stars
omansak/libvideo
A lightweight .NET library to download YouTube videos.
flagbug/Espera
Espera is a media player that plays your music, YouTube videos, SoundCloud songs and has a special "party mode".
Amine-Smahi/C-Sharp-Learning-Journey
Some of the projects i made when starting to learn c#, winfroms and wpf
Version Downloads Last updated
0.10.11 463,757 6/29/2016
0.10.10 5,785 1/4/2016
0.10.9 1,273 12/31/2015
0.10.8 3,480 12/21/2015
0.10.7 2,146 11/17/2015
0.10.6 6,896 1/17/2015
0.10.5 1,241 1/16/2015
0.10.4.1 5,525 8/27/2014
0.10.4 1,228 8/27/2014
0.10.3 1,351 8/7/2014
0.10.2 1,306 7/31/2014
0.10.1 1,578 6/12/2014
0.10.0 1,318 6/5/2014
0.9.5 1,892 4/10/2014
0.9.4 1,379 4/7/2014
0.9.3 1,341 4/5/2014
0.9.2 1,314 3/26/2014
0.9.1 1,260 3/26/2014
0.9.0 1,347 3/26/2014
0.8.1 1,325 3/8/2014
0.8.0 1,301 3/8/2014
0.7.1 1,209 3/8/2014
0.7.0 1,519 12/27/2013
0.6.3.2-alpha 1,342 7/8/2013
0.6.3.1-alpha 1,218 7/7/2013
0.6.2 1,963 6/20/2013
0.6.1 1,402 6/20/2013
0.6.0 1,385 6/19/2013
0.5.0 1,712 2/16/2013
0.4.2 1,459 1/13/2013
0.4.1 1,354 12/20/2012
0.4.0 1,694 11/24/2012
0.3.4 1,521 9/26/2012
0.3.3 1,370 9/24/2012
0.3.2 1,438 9/17/2012
0.3.1 1,359 9/17/2012
0.3.0.1 1,375 9/8/2012
0.3.0 1,438 9/8/2012
0.2.1 1,373 8/19/2012
0.2.0 1,433 7/6/2012
0.1.0 1,634 3/9/2012
0.0.0 1,429 3/8/2012

CHANGES:
- The VideoDownloader and the AudioDownloader classes now implement their own
 progress events. This means that the old ProgressChanged event is now
 obsolete.
 This change was made, because the ProgressChanged event reported the first
 50% as download progress and the second 50% as audio extraction progress.

 This was really inaccurate, as the download progress would be very slow in
 relation to the audio extraction progress, so the AudioDownloader has now
 two separate events:
 DownloadProgressChanged and AudioExctractionProgressChanged.
 
 The VideoDownloader has the ProgressChanged event replaced with the
 DownloadProgressChanged event, but they are basically the same,
 so the real change is made to the AudioDownloader class.