YoutubeExtractor 0.4.0
See the version list below for details.
dotnet add package YoutubeExtractor --version 0.4.0
NuGet\Install-Package YoutubeExtractor -Version 0.4.0
<PackageReference Include="YoutubeExtractor" Version="0.4.0" />
paket add YoutubeExtractor --version 0.4.0
#r "nuget: YoutubeExtractor, 0.4.0"
// 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 | Versions Compatible and additional computed target framework versions. |
---|---|
.NET Framework | net is compatible. |
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 | 466,932 | 6/29/2016 |
0.10.10 | 5,830 | 1/4/2016 |
0.10.9 | 1,323 | 12/31/2015 |
0.10.8 | 3,524 | 12/21/2015 |
0.10.7 | 2,218 | 11/17/2015 |
0.10.6 | 6,979 | 1/17/2015 |
0.10.5 | 1,282 | 1/16/2015 |
0.10.4.1 | 6,048 | 8/27/2014 |
0.10.4 | 1,271 | 8/27/2014 |
0.10.3 | 1,396 | 8/7/2014 |
0.10.2 | 1,341 | 7/31/2014 |
0.10.1 | 1,618 | 6/12/2014 |
0.10.0 | 1,359 | 6/5/2014 |
0.9.5 | 1,944 | 4/10/2014 |
0.9.4 | 1,425 | 4/7/2014 |
0.9.3 | 1,391 | 4/5/2014 |
0.9.2 | 1,359 | 3/26/2014 |
0.9.1 | 1,306 | 3/26/2014 |
0.9.0 | 1,376 | 3/26/2014 |
0.8.1 | 1,367 | 3/8/2014 |
0.8.0 | 1,333 | 3/8/2014 |
0.7.1 | 1,235 | 3/8/2014 |
0.7.0 | 1,558 | 12/27/2013 |
0.6.3.2-alpha | 1,380 | 7/8/2013 |
0.6.3.1-alpha | 1,245 | 7/7/2013 |
0.6.2 | 2,011 | 6/20/2013 |
0.6.1 | 1,446 | 6/20/2013 |
0.6.0 | 1,425 | 6/19/2013 |
0.5.0 | 1,754 | 2/16/2013 |
0.4.2 | 1,504 | 1/13/2013 |
0.4.1 | 1,400 | 12/20/2012 |
0.4.0 | 1,736 | 11/24/2012 |
0.3.4 | 1,567 | 9/26/2012 |
0.3.3 | 1,411 | 9/24/2012 |
0.3.2 | 1,481 | 9/17/2012 |
0.3.1 | 1,397 | 9/17/2012 |
0.3.0.1 | 1,418 | 9/8/2012 |
0.3.0 | 1,479 | 9/8/2012 |
0.2.1 | 1,410 | 8/19/2012 |
0.2.0 | 1,483 | 7/6/2012 |
0.1.0 | 1,676 | 3/9/2012 |
0.0.0 | 1,461 | 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.